diff options
| author | Syndamia <kamen@syndamia.com> | 2022-11-20 10:15:22 +0200 |
|---|---|---|
| committer | Syndamia <kamen@syndamia.com> | 2022-11-20 10:15:22 +0200 |
| commit | 846a283c383ee56a261745b942df2164b150cc05 (patch) | |
| tree | a1ded415aeb320840359742d4feb5a44916ef875 /.vimrc | |
| parent | af93b4366207979b34e0694d145abdc312987023 (diff) | |
| download | dotfiles-846a283c383ee56a261745b942df2164b150cc05.tar dotfiles-846a283c383ee56a261745b942df2164b150cc05.tar.gz dotfiles-846a283c383ee56a261745b942df2164b150cc05.zip | |
[vimrc/CodeTerminal] Added codebuildsingle configs for yacc and lex files
Diffstat (limited to '.vimrc')
| -rw-r--r-- | .vimrc | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -245,7 +245,9 @@ " Building the current file only let g:codebuildsingle = { \ 'scheme': '(enter! "%F")', - \ 'cpp' : "g++ -g -pedantic '%F' && ./a.out" + \ 'cpp' : "g++ -g -pedantic '%F' && ./a.out", + \ 'yacc' : 'bison -t -d %F', + \ 'lex' : 'flex %F' \ } " Building all files in the directory (and subdirectories) of the current file let g:codebuildproject = { |
