Vimscript is the scripting language built into the text editor Vim. It can also be referred to as "Vim Language" or "VimL".
0
votes
1answer
51 views
Query position of sign in Vim with sign ID
I want to query Vim for the line number of a sign. I know the ID of the sign, as I was the one who placed it using sign place {id}..., but I want to be able to ask Vim for it's current position (as ...
0
votes
1answer
35 views
Why my Vim slowing down in rails dir?
I notice that in my rails projects vim starting about 2 sec.
I investigating that issue and I know that this happen because of rails.vim plugin.
Here are my logs from vim: ...
0
votes
1answer
39 views
VIM syntax import for region
Ive got file that uses java code blocks, Is it possible to tell vim in syntax file to import java.vim syntax file for a whole region ?
Example:
syn region javaCode start="<Java>" ...
1
vote
3answers
146 views
Easiest way to test vim regex?
I'm trying to write a vim syntax file, one problem I'm dealing with is vim's regex syntax is different from most other languages(I think the one called "perl compatible regex", Python, JavaScript etc. ...
1
vote
1answer
86 views
How to expand function arguments in Vim command line?
Vim's Utl plugin offers a convenient way for doing web queries from within the editor. When called directly from the command line, a dictionary lookup can be done like this:
:Utl ol ...
2
votes
3answers
82 views
Making Vim mappings quiet
I have a mapping that I use to print the highlighting on a line. I got the idea from other posters here so thanks for that. Here's what I do:
function! PrintSyntaxItem()
let l:colorsyntax = ...
1
vote
1answer
96 views
vim autocmd on change line?
I'm trying to run a function whenever a line is altered, but there doesn't seem to be a specific autocommand for this. I could run the function on CursorMoved, but it would slow down editing. I could ...
1
vote
2answers
79 views
VIM script to remove Ghost newlines
Is there any way using either Vim scripting or search/replace to remove ghost newlines? I have come across times when I have to edit files that other developers using crappy software have left double ...
3
votes
1answer
66 views
How do I execute some command only for module specified in <afile>?
I want to execute MyCommand that needs access to b:somevar for buffer specified by <afile>.
Right now I'm doing something akin to
function F()
let l:a = bufnr(expand("%"))
let l:b = ...
0
votes
2answers
72 views
Mapping/macro to 'smartly' auto-create pairs of apostrophes in vim (and ignore contractions)
I'm currently using closepairs for my auto-closing needs, and it works pretty well. However, there is one caveat -- apostrophes. Don't get me wrong, I need apostrophes closed all the time. I don't ...
1
vote
0answers
93 views
Why does nextgroup not match newline without trailing whitespace?
Consider the following 3 sets of highlight groups and syntax matches:
hi Foo ctermfg=black ctermbg=red guifg=black guibg=red
hi Filler ctermfg=black ctermbg=green guifg=black ...
1
vote
1answer
35 views
execute insert on multiline selection
Sorry if it's a dull question, but why does execute function inserts a number of chars equal to number lines in selection when I do something like this:
execute "silent normal!`>a".some_char
3
votes
3answers
120 views
VIM: Insert a line number, with a space after
I need to insert the line number before each line of text using Vim, and there has to be a space after the line number. For example, if this was TestFile:
Lorem ipsum dolor sit amet, consectetuer ...
3
votes
1answer
45 views
Adding a hook to Vim's default buffer
I want to configure Vim such that when the [No Name] buffer is open, the syntax is set to markdown. Is this possible? I couldn't see such kind of hook in Vim's help.
I'm using Vim 7.3, compiled with ...
1
vote
4answers
175 views
How can I execute the current line as Vim EX commands?
Say I'm editing my _vimrc file and I've just added a couple of lines, for instance a new key mapping. I don't want to reload the whole file (:so %) since that will reset a lot of temporary stuff I'm ...
1
vote
2answers
45 views
Pass variable to tabnew
I have a variable set like so:
let filename="/tmp/" . system('date +"%Y%m%d"') . ".txt"
How do I open a new buffer using that variable as filename, like tabnew /tmp/20130117.txt
2
votes
4answers
129 views
Table-of-contents with VIM folding
A long time ago there was an editor called MultiEdit. It has a feature which I can not find in all powerful VIM. In MultiEdit I could press some hot key and it would show something like ...
1
vote
1answer
93 views
Vim - Why is 'filetype' sometimes empty even though I open an existing file
Sometimes, apparently at random, Vim decides not to figure out what filetype we've opened. I'm not sure why, so please excuse my vague question.
Any idea why it happens and how to mitigate it? I'm ...
2
votes
1answer
61 views
Why does one of these two key binds crash when they are virtually identical?
This problem clearly far transcends my understanding of Vim. These two key binds only differ by two characters, otherwise they are completely identical.
" Move viewport up/down.
noremap <C-d> ...
4
votes
1answer
66 views
How do I manually execute a key combo from a Vim script file?
Say I want to run the key combo <C-e> five times from a Vim script. Is that possible? If so, how is it done?
Specifically, I need this because I want to map a key to nudge the viewport one ...
4
votes
1answer
86 views
Vim - Navigate to next differing indent
Is there a way in Vim in which I could navigate to the next differing indent level?
So from here to there for example:
-> var a = 1;
var b = 2;
var func = function(){
-> return a + ...
1
vote
3answers
56 views
How do I use the return value from a functions in a Vim command?
I'm trying to do something which sound super easy, but for some reason it's not working. The command:
:m 10
moves the current line to right below line 10, and
:echo line(".") - 2
prints out the ...
0
votes
1answer
22 views
strange for vim script in the for-in struct
5 function VaptGet(command_arg, package_arg, ...)
6 let vapt_command = ''
7 let command_list = ['install', 'remove']
8 echo command_list
9 for commands in command_list:
10 ...
0
votes
1answer
68 views
How to split lines in Zen Coding for vim
Whenever I use Zen Coding for vim I usually have the same issue: When I want to wrap a paragraph with p the output would look like this:
<p>Text</p>
However, I'd like it to output like ...
0
votes
1answer
44 views
vimscript: make a key mapping works only in a specified buffer
I'a writing a plugin. I opened a buffer, and drap some menu items in it. I want to trigger some special function when a enter key is pressed. I used nmap :func() , but enter key triggered the func in ...
1
vote
1answer
64 views
Correct filename for new file types inside ftdetect folder for vim
I am creating a new filetype for arduino files in vim.
I looked into the ftdetect documentation and it is specified that a new file with the following content inside the .vim/ftdetect/ folder should ...
0
votes
1answer
58 views
Is there a way to know `preview` window opened(existed) in vim?
In fact, I just want to write a script to toggle preview window. But it seems can't archived from any internal setting of vim.
So, as title. I want to write a script to do it. Any one knows how to ...
0
votes
2answers
55 views
how to map VimroomToggle to several actions
I write blog articles in vim, markdown format. I want to use the awesome "Vimroom" plugin for vim. But the plugin doesn't do several things:
It does not unset the line numbers
it does not unset the ...
0
votes
1answer
46 views
How to add/remove focus marker to spec using vim script?
Do you know any plugin which helps me by using key mapping to add or remove focus marker: focus: true like below.
it "has added a feed item", focus: true do
page[ cursor ].should have_css ...
2
votes
2answers
108 views
vim: map command with confirmation to key
I've written a few macros in my .vimrc for the version control system I'm using (Perforce) (please don't suggest the perforce plugin for vim, I tried it and I don't like it). They all work fine except ...
0
votes
2answers
42 views
how to insert contents to beginning and end of a visual block using vim scripting
I am new to vim scripting. Is it possible to do the following using vim scripting?
I have a visual block of text. By pressing function key (say F5) I need to insert some text to beginning and end of ...
0
votes
3answers
65 views
Vim file explorer with random multiple roots
One thing I like about Sublime Text is that you can drag any folder in the left panel and this folder can be expanded independently from the others. How can I achieve the same functionality in Vim?
...
4
votes
2answers
62 views
How to find out if InsertLeave was the result of a change
In Vim there are basically two types of commands that can make it go into insert mode:
Commands that just add something, such as: i, I, a, A (apart from using backspace).
Or, that also remove a piece ...
2
votes
2answers
100 views
How do I set Vim's 'path' if a file's parent path tree is cookbooks/foo/recipes?
I'm using MacVim to edit Chef cookbooks and I'd really like the gf (Go to file) command to open other Chef recipes in the same cookbook.
Super extra bonus points if your solution can open recipes in ...
0
votes
1answer
62 views
TAB not working when changing CTRL+S to save file in vim
I tried to save a file in vim by using CTRL+S. I came across this link http://vim.wikia.com/wiki/Map_Ctrl-S_to_save_current_or_new_files and according to it added these pieces of codes in .basrc and ...
4
votes
2answers
145 views
Conditional options in .vimrc for Scheme
I want to toggle color-matching parens in vim when I am editing a scheme/lisp file. How can I conditionally run something in my .vimrc?
Something like:
if syntax == scheme:
...
3
votes
1answer
110 views
vim substitute backslash
I am trying to extract only the function name from a function declaration using vim script.
For testing purposes I am using this simple example:
int func(int a);
In vim script I am extracting the ...
1
vote
1answer
81 views
possible to set ctrl-g format in vim?
Is it possible to change what goes into CTRL-G output? Specifically I want to add the current filetype to to the output.
4
votes
2answers
67 views
How to find out a certain color value the current colorscheme is using for certain stuff?
I need this in order to finish a plugin I'm making in order to change the colors of the statusline depending on the mode.
However I've run across an obvious problem, how would I know what theme the ...
2
votes
3answers
511 views
gVim 7.3 in fullscreen mode
I'm using the script to open gVim in fullscreen downloaded from here: http://www.vim.org/scripts/script.php?script_id=2596.
I've also added this line to the startup settings:
:call ...
1
vote
1answer
33 views
How to distinguish the first created window in vim script?
To ask in a more precise way: is there a function that works like winnr(), but returns a non-changed value for each window?
I'm trying to use hotkeys to switch between buffers in my vim. It all ...
0
votes
2answers
141 views
Vim: In Terminal, how can I have a better cursor?
I've noticed when I use the Terminal that the cursor is not as I configured it.
In other words, in the GUI it looks perfect, the cursor that is, but in the Terminal it takes time to update, it ...
2
votes
1answer
164 views
Vim syntax highlighting for special comments
Is there a simple way in Vim to extend the syntax highlighting for a language to allow for important comments to stand out? For instance, if a line that starts with // denotes a regular comment in a C ...
5
votes
1answer
142 views
Vim: How to detect the mode in which the user is in, for statusline?
I need a simple (or complex) way to figure out what mode the user is in. I need to know if the user is in Normal, Insert, Visual, Replace, Change etc.
I am aware of the mode() function, however I ...
3
votes
1answer
57 views
Is there a way to use Gems in Vim's 'embedded' Ruby?
I'm trying to use the tinder gem from inside Vim. I'd like to be able to write to the Vim buffers, so I need to use Vim's embedded Ruby using :ruby as opposed to externally calling !ruby.
I have run ...
4
votes
2answers
74 views
Can I set Vim's 'embedded' ruby path?
When I run:
:ruby print VERSION
in Vim, I get 1.8.7.
I have 1.9.3 installed and I'd like to use that instead. Is there a way to change it?
Would it use the same Gem paths?
I'm not talking about ...
3
votes
1answer
149 views
How does asynchronous Ruby work in Vim?
If you compile a recent version of Vim with +ruby, you can use the :ruby command inside Vim.
What's happening 'under the hood' when I run some asynchronous Ruby code?
For example:
:ruby <<EOS
...
2
votes
1answer
98 views
VIM: Open all folds around current line
I'm trying to write a vim function, which would fold everything except current line/block/method.
Here is what I already wrote:
set foldemethod=indent
...
4
votes
1answer
61 views
How to make vim :source accept different line endings?
Using vim's :source command on a vimscript file with dos line endings is giving me errors that it can't deal with ^M characters.
The ^M characters are part of dos line endings, but not unix line ...
5
votes
2answers
104 views
vimrc addition to toggle :set paste
I'm looking for a way to bind a key combination (something like leader+p) to toggle :set paste on and off with the same key combo.
I know I can :set paste and :set paste! and can bind these to 2 ...