2

ファイル内のコードのセクションはどのように_vimrc相互作用しますか?
現在のファイルは次のようになっていますが、次のような行filetype plugin indent onがこのファイルの最初または最後にあるかどうかが問題になるのでしょうか?
ファイル内で次のような行filetype plugin indent onが 2 回繰り返されても問題はありませんか? 設定は開始近くにする
必要がありますか?Pathogen

"------------------------------------------------------------
    " Must have options {{{1


    "this will make the window maximized on startup
    au GUIEnter * simalt ~x

    " Attempt to determine the type of a file based on its name and possibly its
    " contents. Use this to allow intelligent auto-indenting for each filetype,
    " and for plugins that are filetype specific.
    filetype indent plugin on
    set omnifunc=syntaxcomplete#Complete
    " Enable syntax highlighting
    syntax on

    "set highlight search always on
    :set hlsearch

    "------------------------------------------------------------
    " Usability options {{{1

     " Show partial commands in the last line of the screen
    set showcmd
    " Use case insensitive search, except when using capital letters
    set ignorecase
    set smartcase
    " Allow backspacing over autoindent, line breaks and start of insert action
    set backspace=indent,eol,start
    " When opening a new line and no filetype-specific indenting is enabled, keep
    " the same indent as the line you're currently on. Useful for READMEs, etc.
    set autoindent
    " Stop certain movements from always going to the first character of a line.
    " While this behaviour deviates from that of Vi, it does what most users
    " coming from other editors would expect.
    set nostartofline
    " Display the cursor position on the last line of the screen or in the status
    " line of a window
    set ruler
    " Always display the status line, even if only one window is displayed
    set laststatus=2
    " Instead of failing a command because of unsaved changes, instead raise a
    " dialogue asking if you wish to save changed files.
    set confirm
    " Use visual bell instead of beeping when doing something wrong
    set visualbell
    " And reset the terminal code for the visual bell. If visualbell is set, and
    " this line is also included, vim will neither flash nor beep. If visualbell
    " is unset, this does nothing.
    set t_vb=
    " Enable use of the mouse for all modes
    set mouse=a
    " Set the command window height to 2 lines, to avoid many cases of having to
    " "press <Enter> to continue"
    set cmdheight=2
    " Display line numbers on the left
    set number
    " Quickly time out on keycodes, but never time out on mappings
    set notimeout ttimeout ttimeoutlen=200
    " Use <F11> to toggle between 'paste' and 'nopaste'
    set pastetoggle=<F11>

    "------------------------------------------------------------
    " Indentation options {{{1
    "
    " Indentation settings according to personal preference.

    " Indentation settings for using 2 spaces instead of tabs.
    " Do not change 'tabstop' from its default value of 8 with this setup.
    "set shiftwidth=2
    "set softtabstop=2
    "set expandtab

    " Indentation settings for using hard tabs for indent. Display tabs as
    " two characters wide.
    set shiftwidth=2
    set tabstop=2



    "------------------------------------------------------------
    " Look and Feel {{{1
    "
    " Use CTRL-S for saving, also in Insert mode
    :nnoremap <C-S>     :<C-U>update<CR>
    :vnoremap <C-S>     :<C-U>update<CR>gv
    :cnoremap <C-S>     <C-C>:update<CR>
    :inoremap <C-S>     <C-O>:update<CR>

    "color scheme setting
    " Set nice colors
    " background for normal text is light grey
    " Text below the last line is darker grey
    " Cursor is green, Cyan when ":lmap" mappings are active
    " Constants are not underlined but have a slightly lighter background
    set guifont=Consolas:h16:cANSI
    colorscheme pyte 
    "highlight Normal guibg=grey90
    "highlight Cursor guibg=Green guifg=NONE
    "highlight lCursor guibg=Cyan guifg=NONE
    "highlight NonText guibg=grey80
    "highlight Constant gui=NONE guibg=grey95
    "highlight Special gui=NONE guibg=grey95

    "a quick way to locate python files
    nnoremap <Leader>p :pyf P:\Computer Applications\Python\

    "quick quit command
    noremap <Leader>e :quit<CR> "quits the current window


    "------------------------------------------------------------
    " NERTtree settings {{{1
    "
    "get NERDTree command quick
    nnoremap <Leader>nd :NERDTree M:\
    map <F2> :NERDTreeToggle<CR>
    let NERDTreeQuitOnOpen = 1

    " Rebind <Leader> key...not sure about this one
    "let mapleader = ","

    map <Leader>n <esc>:tabprevious<CR>
    map <Leader>m <esc>:tabnext<CR>

    "------------------------------------------------------------
    " dbext settings {{{1
    "
    "let g:sql_type_default = 'SQLSVR'

     " Since I repeatedly need to edit stored procedures, the CREATE PROCEDURE
    " statement is preceeded by an IF ... END IF block which will drop
    " the procedure or it uses the CREATE OR REPLACE syntax.  
    " This function will visually select the IF block to the END; statement
    " of the stored procedure and execute it.  Or check for the 
    " CREATE OR REPLACE and stop there and look to the end.
    function! SQLExecuteIfCreateReplace()
        let l:old_sel = &sel
        let &sel = 'inclusive'
        let saveWrapScan=&wrapscan
        let saveSearch=@/ 
        let l:reg_z = @z
        let &wrapscan=0
        let @z = ''
        let found = 0
        let startLine = 0
        let endLine = 0
        let curLine = line(".")
        let curCol  = virtcol(".")

        " Must default the command terminator
        let l:dbext_cmd_terminator = ";"

        try
                " Search backwards and do NOT wrap
                " Find the line beginning with an IF clause
                "     IF EXISTS( SELECT 1 ...
                " or find an or replace clause
                "     CREATE OR REPLACE PROCEDURE ...
                " And execute it until we find an 
                "     END 
                " at the beginning of a line.
            let startLine = search('\c\(^\<if\>\|^\<alter\s\+procedure\>\|\<or\s\+replace\>\)', 'bcnW' )

                if startLine > 0
                    " Search forward and visually select all lines
                    " until we find an END; clause
                    let endLine = search('^END'.l:dbext_cmd_terminator.'\s*$', 'cnW')
                    exec startLine.','.endLine.'DBExecRangeSQL'
                endif
            finally
                call cursor(curLine, curCol)
                noh
                let l:query = @z
                let @z = l:reg_z
                let @/=saveSearch
                let &wrapscan=saveWrapScan
                let &sel = l:old_sel
            endtry
        endfunction


    "------------------------------------------------------------
    " pathogen settings {{{1

    "pathogen customization
    "set nocp

    " Use pathogen to easily modify the runtime path to include all plugins under
    " the ~/.vim/bundle directory
    filetype off                    " force reloading *after* pathogen loaded
    call pathogen#infect()
    call pathogen#helptags()
    call pathogen#runtime_append_all_bundles()
    syntax on

    filetype plugin indent on       " enable detection, plugins and indenting in one step
4

2 に答える 2

4

順序は重要です。

たとえば、次の 2 行があります。

オプション:

set nu
set nonu

後者は前の設定を上書きします。

関数の場合、ファイルの最後で関数を宣言したが、1 行目で呼び出した場合。初めてvimrcをロードすると、エラーが発生しますUnknown function: function name

また、配色 (使用した場合) をロードする前に手動で設定するhi groupと、配色も設定を上書きします。

プラグインがロードされる前に、プラグインで定義されたコマンド/関数を呼び出すと、エラー メッセージも表示されます。

そのため、vimrc にいくつかのコマンド/設定が複数回あっても問題ありませんが、最後のものが有効になります。

于 2013-05-19T17:11:43.020 に答える