Tagged Questions
The autocmd tag has no wiki summary.
11
votes
1answer
600 views
Vim: Use shorter textwidth in comments and docstrings
From the mighty PEP 8:
[P]lease limit all lines to a maximum of 79 characters. For flowing long blocks of text (docstrings or comments), limiting the length to 72 characters is recommended.
...
9
votes
1answer
161 views
Prevent saving files with certain names in Vim
I type really fast and realize that sometimes I accidentally save a file with the name of ; or : (I type :wq and sometimes a typo is introduced).
Is there any way to write a macro that rejects saving ...
8
votes
2answers
142 views
Is it possible to have vim prevent the saving of a php file that has a parse error?
I use vim and would like it to prevent me from saving php files that has parse errors. If I would like to use for instance "php -l <file>" to achieve this, how would the autocmd in .vimrc look ...
7
votes
2answers
258 views
Vim run autocmd on all filetypes EXCEPT
I have a Vim autocmd that removes trailing whitespace in files before write. I want this almost 100% of the time, but there are a few filetypes that I'd like it disabled. Conventional wisdom is to ...
6
votes
2answers
242 views
vim + c++: insert a uuid in a guard clause
I'm trying to automate file comment headers. I'm stuck trying to figure out how to insert the result of the uuidgen command into my header using vim's autocmd.
Inside the header, the placeholder text ...
4
votes
3answers
390 views
Vim: Combining autocmd?
I need to do the logical-and of two autocmd events in vim. Basically, the command has to run on an InsertLeave when the FileType is tex. It seems like this should work (in a .vimrc):
autocmd FileType ...
3
votes
1answer
78 views
How to open pdf files under cursor (using 'gf') with external PDF readers in vim
The current gf command will open *.pdf files as ascii text. I want the pdf file opened with external tools (like okular, foxitreader, etc.). I tried to use autocmd to achieve it like this:
au ...
3
votes
2answers
147 views
Vim autocommand trigger on opening “nothing”
I want vim to open up the :Explorer when no file is opened or created. Eg. when I call vim without any options.
calling vim newfile.txt should still behave the normal way though.
How would I go ...
3
votes
2answers
711 views
Call a function in Vim’s `autocmd` command
I want to use the expand function in an autocmd. In particular, I am adapting a tip by Paul Biggar and I wanted to use the following auto command in my .gvimrc:
autocmd FileType tex set ...
2
votes
1answer
128 views
Vim Buffer has been modified [closed]
Possible Duplicate:
What is a vimrc function to determine if a buffer has been modified?
I am trying to implement an AutoCmd in Vim that needs to be executed when the current buffer has ...
2
votes
1answer
472 views
vim: how to execute automatically execute a shell command after saving a file?
title says it all ...
this is because i'd like to automatically run tests after each file save.
I have looked at autocmd and BufWritePost but cannot make it work (started VIM this monday ...)
...
1
vote
2answers
201 views
Vim autocmd patterns
I am trying to make an auto-cmd triggered by opening a new file with path including test/ and with filename ending in Test.java. Reading in :h autocmd-patterns I can not figure out if either only ...
1
vote
3answers
195 views
autocmd check filename in vim?
I want to write some autocmd's that check if the filename is this or that..
I've been trying:
autocmd VimEnter * if % is "preamble" | Explore | endif
autocmd VimEnter * if %=="preamble" | Explore | ...
1
vote
1answer
181 views
How to make vim move cursor a character to theright on insertleave?
Since mac os x's terminal.app does not support many of the vim visual aspects, including the cursor change from block to line when switching to insert mode, I use osascript to accopmlisch something ...
1
vote
2answers
204 views
Run the CommandTFlush command when a new file is written
I'm trying to make Vim run the command 'CommandTFlush' whenever a new file is writte. For those not using the Command-T plugin, the 'CommandTFlush' command is used to rebuild an index of files in the ...
1
vote
2answers
588 views
Vim autocmd based on file contents
I'm trying to set up Vim to detect when a .tex file contains the command '\usepackage{sagemath}', and run a command accordingly. I've gotten to
:au BufReadPost,BufWritePost *.tex TTarget sagepdf
...
0
votes
1answer
36 views
Vim: Saving on FocusLost and executing auto command
I've setup my vim editor (I use MacVim) to save files automatically when the focus is lost:
autocmd FocusLost * silent! wall
I also automatically strip trailing whitespace from python files using ...
0
votes
2answers
89 views
How to get the Help window to always open in the same position?
I do this for opening help pages in vertical window:
cabbrev help vert botright help
this way, it is ok, but a bit disturbing, and it is spamming my :history a bit too.
I would like to get Vim to ...
0
votes
2answers
464 views
Insert vim variables into text for comment shortcut
I have a simple goal: Map Ctrl-C, a command I don't think I've ever used to kill vim, to automatically insert at the beginning of a line the correct character(s) to comment out that line according to ...