Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cursor jumps to top of source file #7

Closed
dirvine opened this issue Jun 22, 2014 · 1 comment
Closed

Cursor jumps to top of source file #7

dirvine opened this issue Jun 22, 2014 · 1 comment

Comments

@dirvine
Copy link

dirvine commented Jun 22, 2014

This seems to be a continuous issue. I love the script, but on linux I cannot get it to work. As I scroll down using any method, the cursor jumps back to the top of the file, normally not getting past the license part (40 or so lines).

Here is my vimrc if it helps. I have tried commenting out almost everything

set runtimepath+=~/.vim/addons/vam

:function! DirCheck()
:let homedir = $PWD
: if finddir("src", homedir."../;") != ""
: return "../src/"
: else
: return = "."
: endif
:endfunction

" call vam#ActivateAddons(['hg:http://hg.dfrank.ru/vim/bundle/dfrank_util'])
" call vam#ActivateAddons(['hg:http://hg.dfrank.ru/vim/bundle/vimprj'])
" call vam#ActivateAddons(['github:Shougo/vimproc.vim'])
call vam#ActivateAddons(['github:vim-scripts/taglist.vim'])
call vam#ActivateAddons(['github:plasticboy/vim-markdown'])
call vam#ActivateAddons(['github:wesleyche/SrcExpl'])
call vam#ActivateAddons(['github:wesleyche/Trinity'])
let g:SrcExpl_updateTagsCmd = "ctags --sort=foldcase -R --c++-kinds=+p --fields=+iaS --extra=+q /home/dirvine/Devel/MaidSafe/src"
let g:SrcExpl_pluginList = [ "Tag_List", "NERD_tree", "Quickfix List", "unite" ]
let g:SrcExpl_isUpdateTags = 0
" // Set the height of Source Explorer window
let g:SrcExpl_winHeight = 8

" // Set 100 ms for refreshing the Source Explorer
let g:SrcExpl_refreshTime = 100

" // Set "Enter" key to jump into the exact definition context
" let g:SrcExpl_jumpKey = ""

" // Set "Space" key for back from the definition context
" let g:SrcExpl_gobackKey = ""

"let g:vim_markdown_folding_disabled=1
call vam#ActivateAddons(['github:mattn/webapi-vim']) " for gist"
call vam#ActivateAddons(['github:mattn/gist-vim'])
"requires git config --global github.user Username
call vam#ActivateAddons(['github:vimoutliner/vimoutliner'])
call vam#ActivateAddons(['github:int3/vim-extradite'])
call vam#ActivateAddons(['github:kien/ctrlp.vim'])
let g:ctrlp_use_caching = 1
let g:ctrlp_max_files = 100000
let g:ctrlp_clear_cache_on_exit = 1
set wildignore+=/tmp/,.so,.swp,.zip,/build*/
nnoremap p :CtrlP ../src
call vam#ActivateAddons(['github:proyvind/Cpp11-Syntax-Support'])
call vam#ActivateAddons(['github:Valloric/YouCompleteMe'])
nnoremap j :YcmCompleter GoToDefinitionElseDeclaration
let g:ycm_complete_in_comments = 1
let g:ycm_collect_identifiers_from_tags_files = 1
let g:ycm_seed_identifiers_with_syntax = 1
let g:ycm_add_preview_to_completeopt = 1
let g:ycm_autoclose_preview_window_after_completion = 1
let g:ycm_autoclose_preview_window_after_insertion = 1
let g:ycm_key_invoke_completion = ''
let g:ycm_confirm_extra_conf = 0

call vam#ActivateAddons(['github:scrooloose/syntastic'])
let g:syntastic_cpp_check_header = 1
let g:syntastic_cpp_config_file = '.syntastic_cpp_config'
let g:syntastic_cpp_remove_include_errors = 1
let g:syntastic_cpp_compiler = 'clang++'
let g:syntastic_check_on_open = 1
let g:syntastic_enable_signs = 1 " Put errors on left side
let g:syntastic_auto_loc_list = 0 " Only show errors when I ask
let g:syntastic_disabled_filetypes = ['html', 'js']
hi SpellBad ctermfg=007 ctermbg=000
hi SpellCap ctermfg=007 ctermbg=000
if has('unix')
let g:syntastic_error_symbol='★'
let g:syntastic_style_error_symbol='>'
let g:syntastic_warning_symbol='⚠'
let g:syntastic_style_warning_symbol='>'
else
let g:syntastic_error_symbol='!'
let g:syntastic_style_error_symbol='>'
let g:syntastic_warning_symbol='.'
let g:syntastic_style_warning_symbol='>'
endif
"call vam#ActivateAddons(['github:flazz/vim-colorschemes'])
call vam#ActivateAddons(['github:Raimondi/delimitMate'])
call vam#ActivateAddons(['github:szw/vim-tags'])
" Create an empty tags dir in project root"
let g:vim_tags_project_tags_command = "ctags -R --c++-kinds=+p --fields=+iaS --extra=+q /home/dirvine/Devel/MaidSafe/src 2>/dev/null"
let g:vim_tags_auto_generate = 1
let g:vim_tags_ignore_files = ['.gitignore', '.svnignore', '.cvsignore', 'build*']
call vam#ActivateAddons(['github:tpope/vim-fugitive'])
call vam#ActivateAddons(['github:xolox/vim-session'])
let g:session_autosave = 'yes'
let g:session_autoload = 'no'
call vam#ActivateAddons(['github:tomtom/tcomment_vim'])
call vam#ActivateAddons(['github:scrooloose/nerdtree'])
" " NerdTree"
" " Prevent :bd inside NERDTree buffer
au FileType nerdtree cnoreabbrev bd
au FileType nerdtree cnoreabbrev BD
au BufRead,BufNewFile *.md set filetype=markdown
set spelllang=en_gb
autocmd Filetype markdown setlocal wrap spell

nnoremap n :NERDTree ../src
" NERDTree settings
let NERDTreeChDirMode=0
let NERDTreeIgnore=['\env','>vim$', '$', '>pyc$', '>swp$', '>egg-info$', '>DS_Store$', '^dist$', '^build$']
let NERDTreeSortOrder=['^__>py$', '/$', '*', '>swp$', '
$']
let NERDTreeShowBookmarks=1
let NERDTreeHightlight=1

call vam#ActivateAddons(['github:Lokaltog/vim-easymotion'])
let g:EasyMotion_leader_key = ''
" call vam#ActivateAddons(['github:ervandew/supertab'])
call vam#ActivateAddons(['github:altercation/vim-colors-solarized'])
let g:solarized_termcolors = 16

syntax enable
set t_Co=16
set background=dark
colorscheme solarized
call vam#ActivateAddons(['github:SirVer/ultisnips'])
let g:rainbow_ctermfgs = [
\ 'brown',
\ 'Darkblue',
\ 'darkgreen',
\ 'darkcyan',
\ 'darkred',
\ 'darkmagenta',
\ 'darkmagenta',
\ 'Darkblue',
\ 'darkgreen',
\ 'darkcyan',
\ 'darkred',
\ 'red',
\ ]
call vam#ActivateAddons(['github:oblitum/rainbow'])
let g:rainbow_active = 1
" C++
au FileType cpp,objcpp set syntax=cpp11
au BufNewFile,BufRead *
\ if expand('%:e') =~ '^(h|hh|hxx|hpp|ii|ixx|ipp|inl|txx|tpp|tpl|cc|cxx|cpp)$' |
\ if &ft != 'cpp' |
\ set ft=cpp |
\ endif |
\ endif |

let g:rainbow_operators = 2
au FileType c,cpp,objc,objcpp call rainbow#activate()
autocmd BufRead *.lyx set syntax=lyx foldmethod=syntax foldcolumn=3
autocmd BufRead *.lyx syntax sync fromstart

filetype plugin indent on
" reset to vim-defaults
if &compatible " only if not set before:
set nocompatible " use vim-defaults instead of vi-defaults (easier, more user friendly)
endif

" display settings
set textwidth=0
set wrapmargin=0
set nowrap " don't wrap lines
set linebreak
set nolist
set fo+=l
set scrolloff=2 " 2 lines above/below cursor when scrolling
set number " show line numbers
set showmatch " show matching bracket (briefly jump)
set showmode " show mode in status bar (insert/replace/...)
set showcmd " show typed command in status bar
set ruler " show cursor position in status bar
set title " show file in titlebar
set wildmenu " completion with menu
set wildignore=.o,.obj,.bak,.exe,.py[co],.swp,~,.pyc,.svn
set laststatus=2 " use 2 lines for the status bar
set matchtime=2 " show matching bracket for 0.2 seconds
set matchpairs+=<:> " specially for html

" editor settings
set esckeys " map missed escape sequences (enables keypad keys)
set ignorecase " case insensitive searching
set smartcase " but become case sensitive if you type uppercase characters
set smartindent " smart auto indenting
set smarttab " smart tab handling for indenting
set magic " change the way backslashes are used in search patterns
set bs=indent,eol,start " Allow backspacing over everything in insert mode

set tabstop=2 " number of spaces a tab counts for
set shiftwidth=2 " spaces for autoindents
set expandtab " turn a tabs into spaces

set fileformat=unix " file mode is unix
"set fileformats=unix,dos # only detect unix file format, displays that ^M with dos files
set noautochdir
" system settings
" set lazyredraw " no redraws in macros
set confirm " get a dialog when :q, :w, or :wq fails
set nobackup " no backup~ files.
set viminfo='20,"500 " remember copy registers after quitting in the .viminfo file'
set hidden " remember undo after quitting
set history=100 " keep 50 lines of command history
set mouse=a " use mouse in visual, normal,insert,command,help mode (shift key disables)
set undodir=~/.vim/undodir
set undofile
set undolevels=10000 "maximum number of changes that can be undone
set undoreload=100000 "maximum number lines to save for undo on a buffer reload
set incsearch
" color settings (if terminal/gui supports it)
if &t_Co > 2 || has("gui_running")
syntax on " enable colors
set hlsearch " highlight search (very useful!)
set incsearch "search incremently (search while typing)
endif
let Tlist_Ctags_Cmd = "/usr/bin/ctags"
let Tlist_WinWidth = 50
"set makeprg=clang++\ -std=c++11\ -stdlib=libc++\ -lc++abi\ -ldl\ -o\ %<\ %
nmap :cnext
nmap :cprev
map :TlistToggle
set tags=./tags,tags;
map :tab split:exec("tag ".expand(""))
map <A-]> :vsp :exec("tag ".expand(""))
noremap zA
nnoremap zA
onoremap zA
vnoremap zf
noremap zR
map :setlocal spell! spelllang=en_gb
" map :!/usr/bin/ctags -R --c++-kinds=+p --fields=+iaS --extra=+q /home/dirvine/Devel/MaidSafe/src
"open and close all the three plugins on the same time

nmap :TrinityToggleAll

" Open and close the srcexpl.vim separately
nmap :TrinityToggleSourceExplorer

" Open and close the taglist.vim separately
nmap :TrinityToggleTagList

" Open and close the NERD_tree.vim separately
nmap :TrinityToggleNERDTree

nmap j:call g:SrcExpl_Jump()
nmap :call g:SrcExpl_GoBack()

"#### EASY NAVIGATION IN INSERT MODE ################################
noremap
noremap
noremap
noremap
inoremap
inoremap
inoremap
inoremap

" Save and make current file.o
function! Make()
let curr_dir = expand('%:h')
if curr_dir == ''
let curr_dir = '.'
endif
echo curr_dir
execute 'lcd ' . curr_dir
execute 'make %:r'
execute 'lcd -'
endfunction

" nnoremap :update:make
"## ctr R for search and replace in visual mode
vnoremap "hy:%s/h//gc"

highlight LongLine ctermbg=Grey guibg=Yellow
highlight WhitespaceEOL ctermbg=Yellow guibg=Yellow
if v:version >= 702 && &ft == 'cpp'
" Lines longer than 100 columns.
au BufWinEnter * let w:m0=matchadd('LongLine', '%>100v.+', -1)

" Whitespace at the end of a line. This little dance suppresses
" whitespace that has just been typed.
au BufWinEnter * let w:m1=matchadd('WhitespaceEOL', '\s+$', -1)
au InsertEnter * call matchdelete(w:m1)
au InsertEnter * let w:m1=matchadd('WhitespaceEOL', '\s+%#@<!$', -1)
au InsertLeave * call matchdelete(w:m1)
au InsertLeave * let w:m1=matchadd('WhitespaceEOL', '\s+$', -1)
" else
" au BufRead,BufNewFile * syntax match LongLine /%>100v.+/
" au InsertEnter * syntax match WhitespaceEOL /\s+%#@<!$/
" au InsertLeave * syntax match WhitespaceEOL /\s+$/
endif
set nocompatible
" FOLDING
augroup vimrc
au BufReadPre * setlocal foldmethod=indent
au BufWinEnter * if &fdm == 'indent' | setlocal foldmethod=manual | endif
augroup END
nnoremap @=(foldlevel('.')?'za':"")
vnoremap zf
set nofoldenable
" Optional
" C/C++ programming helpers
augroup csrc
au!
autocmd FileType * set nocindent smartindent
autocmd FileType c,cpp,cc set cindent
au BufNewFile,BufRead .cpp,.cc.,.h,.hpp set syntax=cpp11
augroup END
" open quickfix after a grep
autocmd QuickFixCmdPost grep cwindow
" Set a few indentation parameters. See the VIM help for cinoptions-values for
" details. These aren't absolute rules; they're just an approximation of
" common style in LLVM source.
set cinoptions=:0,g0,(0,Ws,l1)
" Add and delete spaces in increments of `shiftwidth' for tabs
set smarttab
" Delete trailing whitespace and tabs at the end of each line
command! DeleteTrailingWs :%s/\s+$//
" Convert all tab characters to two spaces
command! Untab :%s/\t/ /g

au BufReadPost * if line("'"") > 0 && line("'"") <= line("$") |
\ exe "normal g'"" | endif
" Automatically open, but do not go to (if there are errors) the quickfix /
" " location list window, or close it when is has become empty.
" "
" " Note: Must allow nesting of autocmds to enable any customizations for
" quickfix
" " buffers.
" " Note: Normally, :cwindow jumps to the quickfix window if the command opens
" it
" " (but not if it's already open). However, as part of the autocmd, this
" doesn't
" " seem to happen.
autocmd QuickFixCmdPost [^l]* nested cwindow
autocmd QuickFixCmdPost l* nested lwindow
":cc see the current error
":cn next error
":cp previous error
":clist list all errors
au FileType qf call AdjustWindowHeight(3, 10)
function! AdjustWindowHeight(minheight, maxheight)
exe max([min([line("$"), a:maxheight]), a:minheight]) . "wincmd "
endfunction
set switchbuf+=usetab,newtab
map :tabr
map :tabl
map :tabp
map :tabn
set errorformat^=%-GIn\ file\ included\ %.%#
set path=../src/
/include,../src/_/src/,../src/,../src/third_party_libs/boost/,../src/,/usr/include/

" cd to the directory containing the file in the buffer
" nmap ,cd :lcd %:h

" chdir to current file
" nnoremap ,cd :cd %:p:h:pwd
" "no cursor keys
" nnoremap
" nnoremap
" nnoremap
" nnoremap
" inoremap
" inoremap
" inoremap
" inoremap
" nnoremap j gj
" nnoremap k gk
"save on lost focus
au FocusLost * :wa
" save on lost fucus/make etc.
set autoread autowrite
" Easy window navigation
map h
map j
map k
map l
"forgot to sudo before editing a file that requires root privileges
cmap w!! w !sudo tee % >/dev/null
set statusline=
set statusline+=%{fugitive#statusline()}
set statusline+=[%n] "buffernr
set statusline+=%<%F\ "File+path
set statusline+=\ %y\ "FileType
set statusline+=\ %{''.(&fenc!=''?&fenc:&enc).''} "Encoding
set statusline+=\ %{(&bomb?",BOM":"")}\ "Encoding2
set statusline+=\ %{&ff}\ "FileFormat (dos/unix..)
set statusline+=\ %=\ row:%l/%L\ (%03p%%)\ "Rownumber/total (%)
set statusline+=\ col:%03c\ "Colnr
set statusline+=\ \ %m%r%w\ %P\ \ "Modified? Readonly? Top/bot.

@wenlongche
Copy link
Owner

Workaround is available in v6.0

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants