... sure I'll seriously do it later.. but currently, I'm still testing it -- trying to move all my linux-based works (whole .vim including all plugins!) on...
132015
John Beckett
johnb.beckett@...
Jul 1, 2012 11:34 am
... I'm not sure exactly what the issue is, but are you aware that in insert mode you can press Ctrl-D to unindent the current line (remove one level of...
132016
Peng Yu
pengyu.ut@...
Jul 1, 2012 3:09 pm
... Obviously, I did what you have mentioned. ~/dvcs_src/utils$ ./_v _v ; echo xxx xxx I also tired to use the script by vim directly. ~/dvcs_src/utils$ vim -e...
132017
Magnus Woldrich
m@...
Jul 1, 2012 4:15 pm
... I'm sorry but the only thing I know about terminals in macos is that they doesn't work. Can you try it in something that is not terminal.app or iterm?...
132018
Lyuben Petrov
lyuben.y.petrov@...
Jul 1, 2012 4:22 pm
au FileType py set autoindent au FileType py set smartindent I added these lines to my vimrc file but still when I open a python file smartindent is not set....
132019
Ben Fritz
fritzophrenic@...
Jul 1, 2012 4:24 pm
... Probably it's because Vim detects *.py files as "python" filetype, not "py". See the output of :set filetype? to determine the filetype of the current...
132020
Ben Fritz
fritzophrenic@...
Jul 1, 2012 4:30 pm
... You might try determining how many characters got deleted (getline in combination with your cursor position command may help here) and insert enough...
132021
Gerardo Marset
gammer1994@...
Jul 1, 2012 5:56 pm
... No, that doesn't help. Thanks anyway. -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply below the text you are...
132022
Gerardo Marset
gammer1994@...
Jul 1, 2012 6:12 pm
... Thanks for the suggestion, but how could I insert a BS in the line without returning the function? -- You received this message from the "vim_use"...
132023
Benjamin Fritz
fritzophrenic@...
Jul 1, 2012 8:06 pm
Attached is a release candidate for the next update of the TOhtml standard plugin distributed with the Vim runtime. The major addition in this release is a new...
132024
Peng Yu
pengyu.ut@...
Jul 1, 2012 9:36 pm
... _v with xterm doesn't work on my mac. But _v does work on my linux machine. I'm trying to understand _v better. Why fd 9 is used? Is it special to vim? ...
132025
Ben Fritz
fritzophrenic@...
Jul 2, 2012 4:22 am
... You can return the <BS>, that's not one of the things that break insert mode. ... You should be able to use your current <C-R>= mapping, or an <expr>...
132026
AndyHancock
andymhancock@...
Jul 2, 2012 5:21 pm
... I find the vim help and vim-specific FAQs/wikis helpful if I now the right words. Google helps me find the right words, and often points me to relevant...
132027
Bee
beeyawned@...
Jul 2, 2012 7:35 pm
... I have wondered about coloring the statusline. Thank you John. These work the way I would like. Is it possible to make it a one liner? That is...
132028
Tim Johnson
tim@...
Jul 2, 2012 10:32 pm
I have mapped ,cs to a function called CheckSyntax if I execute ... I get ,cs * :call CheckSyntax()<CR> if I execute ... I get ,cs * :call...
132029
richard emberson
richard.emberson@...
Jul 2, 2012 11:21 pm
If I use the matchadd function to highlight a region given a pattern which is based upon a region, can I use the id returned by matchadd with the function...
132030
Gary Johnson
garyjohn@...
Jul 2, 2012 11:22 pm
... I don't think Vim remembers any place but the last where a mapping was defined. However, you can start Vim like this, $ vim -V15verbose.out ... and...
132031
Tim Johnson
tim@...
Jul 2, 2012 11:58 pm
... That is great Gary, thanks for such a succint solution. cheers -- Tim tim at tee jay forty nine dot com or akwebsoft dot com http://www.akwebsoft.com -- ...
132032
John Little
John.B.Little@...
Jul 3, 2012 6:32 am
... Perhaps I should have given all the details, the way Tony M does. My 'statusline39; is set to %<%f%1*%{&ff=~'u'?39;':&ff}%* %h%m%r%=%-16.(%l,%2c %L%) %P so...
132033
Tony Mechelynck
antoine.mechelynck@...
Jul 3, 2012 1:12 pm
... synIDattr() needs as its first argument a syntax ID. matchadd() gives you a match ID. They are not the same and cannot be used interchangeably. The...
132034
Phil Quinton
dampstudios@...
Jul 3, 2012 1:16 pm
Hi, Did you manage to get to the bottom of this. I've had these issues on all HP-UX 11i v3 servers I put Vim73 on and it's driving me mad? Thanks, Phil. -- You...
132035
Bart Baker
bartbkr@...
Jul 3, 2012 1:27 pm
Hello, I'm having an issue when I've split (or vsplit) between any screen and a netrw window. When I switch from other window to the netrw (<C-W> [hjkl], ...
132036
Charles Campbell
Charles.E.Campbell@...
Jul 3, 2012 2:29 pm
... Thank you for letting me know -- I can see this behavior, too. Probably due to an "unrelated" fix; I'll look into it. Regards, Chip Campbell -- You...
132037
ping
songpingemail@...
Jul 3, 2012 2:43 pm
guys/experts: sorry If I'm asking an idiot question... I'm learning about auto detection of file type and apply my own syntax highlight+folding based on it. so...
132038
Dotan Cohen
dotancohen@...
Jul 3, 2012 3:54 pm
I find it difficult to keep track of my location in a file with information like 351/2343 15%, and would really like a visual indication such as Code Overview...
132039
Christian Brabandt
cblists@...
Jul 3, 2012 6:35 pm
Hi Dotan! ... I used to have this one in my .vimrc (it's based on a tip by A.Politz): https://groups.google.com/group/vim_use/msg/e7c193ad5dc9c136 regards, ...
132040
Sepp Tannhuber
sepp.tannhuber@...
Jul 3, 2012 7:04 pm
Dear all, I have the following vim notes file: ~Â notes ~ ~Â #2012-04-12 ~Â Â Â â—¦ DONE beer ~Â ~Â #2012-04-13 ~Â Â Â â—¦ DONE beer ~Â Â Â â—¦ DONE...
132041
Salman Halim
salmanhalim@...
Jul 3, 2012 7:34 pm
... Quick answer that comes to me off the top of my head: use a custom fold expression. (See :help 'foldexpr39;) Basically, you want something that does...
132042
ping
songpingemail@...
Jul 3, 2012 7:54 pm
... I did a quick test but that give me nothing, do I miss anything? " put following in .vimrc: " A statusbar function, that provides a visual scrollbar...
132043
Christian Brabandt
cblists@...
Jul 3, 2012 8:49 pm
Hi ping! ... Check your 'laststatus39; setting. regards, Christian -- -- You received this message from the "vim_use" maillist. Do not top-post! Type your reply...