Server IP : 85.214.239.14 / Your IP : 18.226.4.248 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/3/root/usr/share/vim/vim90/ftplugin/ |
Upload File : |
" CHICKEN-specific Vim customizations " Last Change: 2018-03-05 " Author: Evan Hanson <evhan@foldling.org> " Maintainer: Evan Hanson <evhan@foldling.org> " Repository: https://git.foldling.org/vim-scheme.git " URL: https://foldling.org/vim/ftplugin/chicken.vim " Notes: These are supplemental settings, to be loaded after the core " Scheme ftplugin file (ftplugin/scheme.vim). Enable it by setting " b:is_chicken=1 and filetype=scheme. if !exists('b:did_scheme_ftplugin') finish endif setl keywordprg=chicken-doc setl lispwords+=and-let* setl lispwords+=compiler-typecase setl lispwords+=condition-case setl lispwords+=define-compiler-syntax setl lispwords+=define-constant setl lispwords+=define-external setl lispwords+=define-for-syntax setl lispwords+=define-foreign-type setl lispwords+=define-inline setl lispwords+=define-location setl lispwords+=define-record setl lispwords+=define-record-printer setl lispwords+=define-specialization setl lispwords+=fluid-let setl lispwords+=foreign-lambda* setl lispwords+=foreign-primitive setl lispwords+=foreign-safe-lambda* setl lispwords+=functor setl lispwords+=handle-exceptions setl lispwords+=let-compiler-syntax setl lispwords+=let-location setl lispwords+=let-optionals setl lispwords+=let-optionals* setl lispwords+=letrec-values setl lispwords+=match setl lispwords+=match-let setl lispwords+=match-let* setl lispwords+=match-letrec setl lispwords+=module setl lispwords+=receive setl lispwords+=set!-values setl lispwords+=test-group let b:undo_ftplugin = b:undo_ftplugin . ' keywordprg<' if exists('g:loaded_matchit') && !exists('b:match_words') let b:match_words = '#>:<#' let b:undo_ftplugin = b:undo_ftplugin . ' | unlet! b:match_words' endif