- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我无法在 macvim 中折叠我的代码
我的环境和设置位于要点链接 https://gist.github.com/poc7667/7035979
有什么想法吗?
hi Comment ctermfg=6
"function SetCafeOptions()
"CoffeeCompile
":set nonu
":res -24
":res +24
"endfunction
set encoding=utf-8
set fileencoding=utf-8
colorscheme elflord
set smartindent
set tabstop=4
set expandtab
set shiftwidth=4
"make it autoreload
set autoread
"auto move it last time the position you viewed
"make vim save and load the folding of the document each time it loads"
""also places the cursor in the last place that it was left."
"try to set show ansi color
if &term=="ansi"
set t_Co=0
endif
"set expandtab
filetype on
if has("cscope")
set csprg=/usr/bin/cscope
set csto=0
set cst
set nocsverb
" add any database in current directory
if filereadable("cscope.out")
cs add cscope.out
" else add database pointed to by environment
elseif $CSCOPE_DB != ""
cs add $CSCOPE_DB
endif
set csverb
set cscopetag
set cscopequickfix=s-,g-,c-,d-,t-,e-,f-,i-
endif
"let Tlist can close windows at one time
let Tlist_Show_One_File=1
let Tlist_Exit_OnlyWindow=1
" Key map
" Presee F4 and you can open the NERDTree
nnoremap <silent> <F4> :NERDTree<CR>
"nnoremap <silent> <F3> :!/usr/bin/env python %<CR>
" Show function List with Tlist
nnoremap <F12> :TlistToggle<CR>
" Map ctrl+q to ctrlw+ctrlw
"
"nnoremap <silent> <C-q> :<C-w><C-w>
"switch in splitted window
map <c-d> <c-w>l
map <c-a> <c-w>h
"set highlight
set hlsearch
"set autocomplet
"autocmd BufNewFile,BufRead *.html.erb set filetype=html.eruby
autocmd BufNewFile,BufRead *.html.erb set filetype=erb.html.eruby
filetype plugin on
"auto import python template
autocmd bufnewfile *.py 0r ~/common_lib/python/tmpl.py
map gn :bn<cr>
map gp :bp<cr>
map ff :CtrlP<cr>
map gt :buffers<cr>
"set NerdTreeSize
let g:NERDTreeWinSize=12
"auto close the nerdtress window whe you open new file
let g:ctrlp_dont_split = 'nerdtree'
set nocompatible " explictly get out of vi-compatible mode
set background=dark " we plan to use a dark background
syntax on " syntax highlighting on
set number " turn on line numbers
set wildignore+=*/test/*,*/tmp/*,*.so,*.swp,*.zip " MacOSX/Linux
set ruler "always show current position along the bottom
set incsearch " do highlight as you type you search phrase
set ignorecase " case insensitive by default
set smartcase " if there are caps, go case-sensitive
"Rope vim
let $PYTHONPATH .= ":~/install/ropehg/rope:~/install/ropehg/ropemode:~/install/ropehg/ropevim"
source ~/install/ropehg/ropevim/ropevim.vim
let g:pymode_rope_goto_def_newwin = "new"
let ropevim_vim_completion=1
"Use Ctrl + ] . to autocomple
inoremap <C-]> <C-R>=RopeCodeAssistInsertMode()<CR>
map <leader>j :RopeGotoDefinition<CR>
map <leader>r :RopeRename<CR>
" Load the whole plugin
let g:pymode = 1
" Load run code plugin
let g:pymode_run = 1
"add ctrlp.vim setting
""
let g:ctrlp_custom_ignore = 'tmp$\|\.git$\|\.hg$\|\.svn$\|.rvm$'
let g:ctrlp_working_path_mode = 'ra'
let g:ctrlp_match_window_bottom=1
let g:ctrlp_max_height=15
let g:ctrlp_match_window_reversed=0
let g:ctrlp_mruf_max=500
let g:ctrlp_follow_symlinks=1
"Vundle
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
Bundle 'gmarik/vundle'
Bundle 'tpope/vim-surround'
Bundle 'Raimondi/delimitMate'
"coffee script"
Bundle 'kchmck/vim-coffee-script'
Bundle 'ack.vim'
Bundle 'matchit.zip'
"Markdown"
"Bundle 'plasticboy/vim-markdown'
""Vim-scripts repo
Bundle 'The-NERD-Commenter'
Bundle 'pep8'
""Bundle 'AutoClose'
filetype plugin indent on
nmap <leader>a <Esc>:Ack ""
"folding code
nnoremap <space> za
vnoremap <space> zf
" pep8
let g:pep8_map='<leader>8'
"coffee script"
call pathogen#infect()
"make vim save and load the folding of the document each time it loads"
""also places the cursor in the last place that it was left."
au BufWinLeave *.* mkview
au BufWinEnter *.* silent loadview
let Tlist_Use_Right_Window = 1
"autocmd BufEnter * if &filetype == "" | setlocal ft=python | endif
"markdown https://github.com/plasticboy/vim-markdown/wiki"
"let g:vim_markdown_folding_disabled=1
"auto exec ruby and coffee script with F5 , remeber to save file before launching
autocmd FileType python map <leader>p :!python %<cr>
autocmd FileType ruby,rb map <leader>5 :w!<cr>:!ruby %<cr>
autocmd FileType * map <leader>e :qa!<cr>
"autocmd FileType coffee nmap <F5> :CoffeeCompile<cr>
"autocmd FileType coffee map <F5> :call SetCafeOptions()<cr>
so ~/.vim/snippets/support_functions.vim
最佳答案
您的 .vimrc 实际上并未在任何地方启用折叠。默认情况下不启用折叠。你需要告诉 Vim 使用什么方法来折叠你的代码。
您使用的方法可能取决于您正在编辑的代码类型。一些语法突出显示文件定义基于语法的折叠。其他语法文件则没有。如果您的代码类型支持基于语法的折叠,那么您可以在加载文件后 :setlocal Foldmethod=syntax
。如果您愿意,您可以在 .vimrc 中的 autocmd 中执行此操作,例如 autocmd FileType c setlocal Foldmethod=syntax
或者您也可以手动执行此操作。
其他自动折叠方法包括“marker”、“expr”和“indent”。默认情况下,折叠方法是“手动”,您必须首先使用 zf
创建折叠才能使用折叠命令。
参见http://vim.wikia.com/wiki/Folding进行更详细的讨论。
关于vim - macvim 无法折叠代码 "E490: No fold found",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19441014/
如何将 MacVim 设置为以扩展显示器的全高(减去菜单栏)和宽度(非全 View )的窗口启动? 如果这在启动时不可能,我该如何手动更改它(不是通过拖动窗口,而是使用命令)? 最佳答案 您可以设置
我已经开始使用 macvim,现在对导航相当满意(在单个文件上),现在我需要使用 mvim 编写整个项目(比如 rails)。 在textmate,你有mate project_dir它在侧抽屉中打开
我已经安装了 MacVim 和 Janus。 我最近添加了 set rnu到我的 .vimrc.after 以启用相对行编号,并发现我在打开新窗口时只有 rnu 工作。我的意思是,当我在现有窗口中打开
我最近将 macvim 升级到 7.3,我无法再在打开 macvim 的目录中打开 nerdtree 或 netw,它总是在我的主目录中打开。 例如, 如果我在/users/me/test/proje
我希望 vim 指向 macvim :) 可能是通过别名。 vim 在这里:whereis vim /usr/bin/vim macvim 我找不到,例如whereis macvim什么都不返回 最佳
我正在使用带有 Mountain Lion 的 Mac OSX 并且我正在运行 MacVim 7.3 快照 66,我刚刚安装了它 brew install macvim但它不是从它的工具栏开始,我真的
当我使用 vim newfilename打开一个文件但该文件不退出,vim将创建一个名为 newfilename 的新文件. 然而,MacVim不能以这种方式工作 --- 即 mvim newfile
我正在尝试使用 command-t fuzzy finder plugin对于 MacVim。 我按照说明操作,但我的 MacVim 不再工作;没有窗口显示,但它看起来仍然像启动一样,因为应用程序图标
大约 6 个月前,我的所有开发工作都从 TextMate 切换到 MacVim,主要包括使用 Ruby、Ruby on Rails 和 JavaScript 进行编码。 使用 TextMate,每当我
每当我聚焦我的 MacVim 窗口时,它都会卡住几秒钟。这似乎是由于 NERDTree 刷新了它的根节点(它打印 NERDTree: Refreshing root node. This could
我正在学习配置macvim。 现在,我的制表符缩进是4个字符,我想将其更改为2个字符。我应该在macvim配置文件中添加什么? 我有什么初学者指南来学习配置mac vim吗? 最佳答案 在MacVim
我正在尝试编写一个作用于任何文件类型的函数(因此不是特定的 ftplugin),它根据文件类型具有不同的行为。例如 if (filetype=='objc') "do something
在 macvim 中,是否可以使选项卡名称全长(即不缩短?) 例如,如果我打开 a-very-really-quite-long-file-name.txt,它在选项卡中的名称将缩短为 a-very-
如何让 mvim 在启动时自动垂直拆分窗口? 最佳答案 我没有 mvim,但它可能是 ~/.vimrc ,因此,尝试将此行添加到您的 ~/.vimrc文件: vsplit 关于vim - MacVim
我正在阅读 Django 教程 http://docs.djangoproject.com/en/1.2/intro/tutorial01/#activating-models ,它通过 python
如何为 MacVim 添加西类牙语拼写检查器? 我读到这是一个有用的 link ,但显然它不起作用......我该怎么办? 最佳答案 我不知道 MacVim,但是我只是在 Windows 7 上的 v
我从 Vim 外部复制文本。 ⌘V 在其他应用程序中粘贴文本没有问题。在 MacVim 中,它不起作用。 在插入模式下,什么都不显示。在普通模式下,我得到 E353: Nothing in regis
我已经从 /Applications/ 中删除了 MacVim目录,但当我输入 vim 时在终端中显示错误:no such file or directory: /Applications/MacVi
对于 MacVim,我使用大小为 10 的 Monaco 字体,在标准 MacVim 配置下,它没有抗锯齿。当我在 MacVim 首选项(高级选项卡)中打开高级渲染时,Monaco 10pt 现在是抗
如何在 MacVim 中使用命令键?例如,我希望能够按 Cmdt 来打开 CtrlP 或 Cmdn 来打开 NerdTree。 最佳答案 见 :help 映射到⌘-T; 然而 , ⌘-T 已经映射到
我是一名优秀的程序员,十分优秀!