diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2018-10-28 10:36:56 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2018-10-28 10:36:56 -0700 |
commit | a7de43381c398e58f2419b3547b683aadc20581d (patch) | |
tree | d1bb49145c0537c7ca4b1862a0a31a879f973047 /genvim.txr | |
parent | 3bccc778e8cd908a8599a35abb75c592877f6637 (diff) | |
download | txr-a7de43381c398e58f2419b3547b683aadc20581d.tar.gz txr-a7de43381c398e58f2419b3547b683aadc20581d.tar.bz2 txr-a7de43381c398e58f2419b3547b683aadc20581d.zip |
genvim: include .tlo files in vimrc example.
* genvim.txr: In the Vim syntax file comment's example .vimrc
lines, include .tlo files, which are just TXR Lisp syntax.
Diffstat (limited to 'genvim.txr')
-rw-r--r-- | genvim.txr | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -66,10 +66,10 @@ static void dir_tables_init(void) " " 1. Create the directory .vim/syntax in your home directory and " put the files txr.vim and tl.vim into this directory. -" 2. In your .vimrc, add this command to associate *.txr and *.tl +" 2. In your .vimrc, add this command to associate *.txr, *.tl and *.tlo " files with the txr and tl filetypes: " :au BufRead,BufNewFile *.txr set filetype=txr | set lisp -" :au BufRead,BufNewFile *.tl set filetype=tl | set lisp +" :au BufRead,BufNewFile *.tl,*.tlo set filetype=tl | set lisp " " If you want syntax highlighting to be on automatically (for any language) " you need to add ":syntax on" in your .vimrc also. But you knew that already! |