To save time when creating new scripts I have added the following alias to my .cshrc file:
alias skript 'touch \!^; chmod +x \!^; vim \!^'
This will create the file I gave as an argument to skript, make this file executable, and then open the file in vim.
All this works well, apart from one thing: the autocmd lines in my .vimrc file are not executed, even though the settings specified in .vimrc are all in place. If I start vim directly, i.e. not using above alias, everythings works as expected.
In case this is relevant, the autocmd lines produce a default header for files with a certain extension, a process during which a template text file has to be read.
In case any of you could help me with getting the header to be produced in files created using my skript alias that would be great!
Thanks a lot for your time.
EDIT
Here are the autocmd lines from my .vimrc file:
autocmd bufnewfile *.pl so /home/my_home/Templates/perl_template.txt
autocmd bufnewfile *.pl exe "1," . 10 . "g/creation date:.*/s//creation date: " .strftime("%d-%m-%Y")
autocmd Bufwritepre,filewritepre *.pl execute "normal ma"
autocmd Bufwritepre,filewritepre *.pl exe "1," . 10 . "g/last modified:.*/s/last modified:.*/last modified: " .strftime("%c")
autocmd bufwritepost,filewritepost *.pl execute "normal `a"