Vim Ignores Aliases
--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Hypnotic Orient Looping
--
Chapters
00:00 Vim Ignores Aliases
00:17 Answer 1 Score 4
00:40 Accepted Answer Score 17
01:20 Thank you
--
Full question
https://superuser.com/questions/47821/vi...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#shell #vim #alias #ignore
#avk47
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------
Music by Eric Matyas
https://www.soundimage.org
Track title: Hypnotic Orient Looping
--
Chapters
00:00 Vim Ignores Aliases
00:17 Answer 1 Score 4
00:40 Accepted Answer Score 17
01:20 Thank you
--
Full question
https://superuser.com/questions/47821/vi...
--
Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...
--
Tags
#shell #vim #alias #ignore
#avk47
ANSWER 1
Score 4
If you want a word for the notification itself, try "reminder", "alert", "notice", or "warning bell".
If you want a word for the time period itself (which I think is what you're asking), that could be a "pre-event period", "notice period", or "reminder period". (I can't think of a single-word term.)
ACCEPTED ANSWER
Score 17
Vim 'ignores' your aliases because your shell is not in a 'mood' to parse your .bash_profile/.bashrc
(you did not specify, where your aliases are defined) because it is not started as a login/interactive shell (read here to find out more about what is read when and for what reason).
So, you have several options:
- Put the code you use in your
pdflatex
alias into a script and call that - vimrc:
'set shell=/bin/bash\ -l'
, put your aliases to .bash_profile - Call your shell as an interactive/login shell:
:! bash -l -i -e 'pdflatex .'