Compare commits

..

4 Commits

Author SHA1 Message Date
Peter J. Holzer ec477c64f9 Merge branch 'master' of git.hjp.at:hjp/dot 2020-11-12 15:17:29 +01:00
Peter J. Holzer d87a7a5b0a Recognize Redmine wiki texts edited with textern. 2020-11-12 15:16:23 +01:00
Peter J. Holzer a8caa34f9f Recognise alternate form of Ctrl-E
New versions of xterm can apparently send elaborate escape sequences for
modifier-key-combinations (e.g. Ctrl-E) and new versions of vim tell
them to do that. So Ctrl-E may now be just ASCII 0x05 or a long
sequence and we want both to work.
2020-11-12 15:11:57 +01:00
Peter J. Holzer 14dd884ae0 Add subdirecories of ~/bin/hosts to PATH 2020-11-12 15:10:39 +01:00
2 changed files with 7 additions and 1 deletions

4
.vimrc
View File

@ -36,6 +36,7 @@ endif
map <F7> :cp map <F7> :cp
map <F8> :cn map <F8> :cn
map!  >I<yypa/O map!  >I<yypa/O
map! [27;5;101~ >I<yypa/O
autocmd FileType perl let perl_fold=1 autocmd FileType perl let perl_fold=1
autocmd FileType perl syntax on autocmd FileType perl syntax on
@ -49,3 +50,6 @@ autocmd FileType javascript set sw=2
autocmd FileType html set sw=2 autocmd FileType html set sw=2
autocmd FileType crontab set tw=0 autocmd FileType crontab set tw=0
autocmd BufRead,BufNewFile redmine*.txt set filetype=textile
autocmd FileType textile set tw=0 linebreak

View File

@ -97,7 +97,9 @@ then
`$preppath -c -e -r /usr/local/go-1.*/bin` `$preppath -c -e -r /usr/local/go-1.*/bin`
`$preppath -c -e -r $HOME/go/bin` `$preppath -c -e -r $HOME/go/bin`
PATH=`$preppath -c $HOME/scripts` PATH=`$preppath -c $HOME/scripts`
PATH=`$preppath -c $HOME/bin/hosts:$HOME/bin` PATH=`$preppath -c $HOME/bin`
PATH=`$preppath -c $HOME/bin/hosts`
PATH=`$preppath -c $HOME/bin/hosts/*(/)`
# then append less important stuff # then append less important stuff
PATH=`apppath -c /usr/local/www/offline/devel.fiw/bin` PATH=`apppath -c /usr/local/www/offline/devel.fiw/bin`