我想像TextMate一样做vim snipMate [英] I want to do vim snipMate like TextMate

查看:81
本文介绍了我想像TextMate一样做vim snipMate的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在 snipMate上使用vim 但我发现了这个问题

i use vim with snipMate But I find this problem

if (true) {|};

在TextMate中,按Enter键后.查看光标

in TextMate After pressing Enter key .. Look at the cursor

if (true) {
    |
};

在vim中按Enter键后.查看光标

in vim After pressing Enter key .. Look at the cursor

if (true) {
|};

如何制作vim,例如TextMate

How to Make vim , such as TextMate

谢谢

编辑

edit

这是我的vimrc

filetype on                   " Enable filetype detection
filetype indent on            " Enable filetype-specific indenting
filetype plugin on            " Enable filetype-specific plugins

" New Tab
nnoremap <silent> <C-t> :tabnew<CR>
" Next Tab
nnoremap <silent> <C-Right> :tabnext<CR>

" Previous Tab
nnoremap <silent> <C-Left> :tabprevious<CR>

abbrev ff :! Open -a Firefox.app %:p<cr>

abbrev gc :! Open -a Chrome.app %:p<cr>
" Set off the other paren
highlight MatchParen ctermbg=4
" }}}

"{{{Look and Feel

" Favorite Color Scheme

   colorscheme sunburst

   set guioptions-=T

" When I close a tab, remove the buffer
set nohidden


" Highlight things that we find with the search
set hlsearch



" Incremental searching is sexy
set incsearch


" This is totally awesome - remap jj to escape in insert mode.  You'll never type jj anyway, so it's great!
inoremap jj <Esc>


" And so is Artificial Intellegence!
set smartcase


" Enable mouse support in console
set mouse=a

" Got backspace?
set backspace=2

" Line Numbers PWN!
set number

" Ignoring case is a fun trick
set ignorecase



" Who wants an 8 character tab?  Not me!
set shiftwidth=3
set softtabstop=3


" Spaces are better than a tab character
set expandtab
set smarttab

" Who doesn't like autoindent?
set autoindent
set smartindent
set tabstop=4
set shiftwidth=4
set expandtab


" Needed for Syntax Highlighting and stuff
filetype on
filetype plugin on
syntax enable
set grepprg=grep\ -nH\ $*

set foldmethod=indent
set foldnestmax=10
set nofoldenable
set foldlevel=1

" This shows what you are typing as a command.  I love this!
set showcmd

set cul                                           
hi CursorLine term=none cterm=none ctermbg=3      
set tabstop=2
set ruler                     " show the line number on the bar
set autoread                  " watch for file changes
set backspace=indent,eol,start
set cmdheight=2               " command line two lines high
set undolevels=1000           " 1000 undos
"map a change directory in desktop
nmap ,d :cd C:\Users\Tarek\Desktop<cr>:e.<cr>


""""""""""""""""""""""""""""""
" => Visual mode related
""""""""""""""""""""""""""""""
" Really useful!
"  In visual mode when you press * or # to search for the current selection
vnoremap <silent> * :call VisualSearch('f')<CR>
vnoremap <silent> # :call VisualSearch('b')<CR>

" When you press gv you vimgrep after the selected text
vnoremap <silent> gv :call VisualSearch('gv')<CR>
map <leader>g :vimgrep // **/*.<left><left><left><left><left><left><left>


function! CmdLine(str)
    exe "menu Foo.Bar :" . a:str
    emenu Foo.Bar
    unmenu Foo
endfunction

" From an idea by Michael Naumann
function! VisualSearch(direction) range
    let l:saved_reg = @"
    execute "normal! vgvy"

    let l:pattern = escape(@", '\\/.*$^~[]')
    let l:pattern = substitute(l:pattern, "\n$", "", "")

    if a:direction == 'b'
        execute "normal ?" . l:pattern . "^M"
    elseif a:direction == 'gv'
        call CmdLine("vimgrep " . '/'. l:pattern . '/' . ' **/*.')
    elseif a:direction == 'f'
        execute "normal /" . l:pattern . "^M"
    endif

    let @/ = l:pattern
    let @" = l:saved_reg
endfunction

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Command mode related
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Smart mappings on the command line
cno $h e ~/
cno $d e ~/Desktop/
cno $j e ./
cno $c e <C-\>eCurrentFileDir("e")<cr>
cno $u e ftp://learnsto@ftp.learn-store.com/www/


" $q is super useful when browsing on the command line
cno $q <C-\>eDeleteTillSlash()<cr>

" Bash like keys for the command line
cnoremap <C-A>      <Home>
cnoremap <C-E>      <End>
cnoremap <C-K>      <C-U>

cnoremap <C-P> <Up>
cnoremap <C-N> <Down>

""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

"Opens file in buffer in Chrome
abbrev ch :! @start "" /b "C:\Program Files\Google\Chrome\Application\chrome.exe" %:p
"Opens file in buffer in Firefox
abbrev fc :! @start "" /b "C:\Program Files\Mozilla Firefox\firefox.exe" %:p


""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""

imap <C-e> <C-y>,
imap <C-j> <C-x><C-o>
"" set guifont=Inconsolata\ 16
set nocp
    if version >= 600
      filetype plugin indent on
    endif
    let g:netrw_alto = 1

" Use menu to show command-line completion (in 'full' case)
set wildmenu

" Set command-line completion mode:
"   - on first <Tab>, when more than one match, list all matches and complete
"     the longest common  string
"   - on second <Tab>, complete the next full match and show menu
set wildmode=list:longest,full

" Show the bookmarks table on startup
let NERDTreeShowBookmarks=1
let b:surround_indent = 1
au BufRead,BufNewFile jquery.*.js set ft=javascript syntax=jquery

let g:js_indent_log = 0

推荐答案

将其放入您的.vimrc文件:

Put this into your .vimrc file:

inoremap {<cr> {<CR><CR>}<Esc>-cc

这篇关于我想像TextMate一样做vim snipMate的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆