Vim syntax based folding with php

后端 未结 3 1953
半阙折子戏
半阙折子戏 2021-01-02 05:27

I have downloaded php.vim file, which contains PHP-based syntax information. It should be able to provide syntax based folding, but I can\'t make it work for some reason.

相关标签:
3条回答
  • 2021-01-02 05:42

    Apparently my VIM didn't run :syntax enable.

    Doing :syntax enable fixed the problem, but I also added :syntax on to .vimrc

    0 讨论(0)
  • 2021-01-02 05:49

    I find the phpfolding.vim , and it`s very easy to use.

    1. put the phpfolding.vim to $HOME/.vim/plugin/

    2. add keymap

      map <F5> <Esc>:EnableFastPHPFolds<Cr>

      map <F6> <Esc>:EnablePHPFolds<Cr>

      map <F7> <Esc>:DisablePHPFolds<Cr>

    enjoy it!

    0 讨论(0)
  • 2021-01-02 05:57

    :syntax enable (or :syntax on) work because both those options also turn on filetype detection. The filetype has to be detected before folding or highlighting work.

    If you're developing in PHP you probably want to add these three lines to your .vimrc

    set nocompatible          " Because filetype detection doesn't work well in compatible mode
    filetype plugin indent on " Turns on filetype detection, filetype plugins, and filetype indenting all of which add nice extra features to whatever language you're using
    syntax enable             " Turns on filetype detection if not already on, and then applies filetype-specific highlighting.
    

    Then you can put your let g:php_folding=2 and set foldmethod=syntax in your ~/.vim/after/ftplugin/php.vim file.

    This will keep your .vimrc file clean, help organize all your settings, and the foldmethod=syntax will only affect php files (If you want to set syntax as your default fold method for all filestypes, leave that line in your .vimrc file)

    For more detailed information read these help files:

    :help filetype
    :help usr_05.txt
    :help usr_43.txt

    0 讨论(0)
提交回复
热议问题