Skip to content

Commit

Permalink
updating messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Yodi aditya committed Sep 3, 2011
1 parent fa98a16 commit d9199fb
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 25 deletions.
1 change: 0 additions & 1 deletion .vim/bundle/javaScriptLint.vim
Submodule javaScriptLint.vim deleted from f49995
10 changes: 6 additions & 4 deletions .vimrc
Expand Up @@ -20,7 +20,6 @@ Bundle 'Conque-Shell'
Bundle 'L9'
Bundle 'cschlueter/vim-mustang'
Bundle 'sukima/xmledit'
"Bundle 'vim-scripts/closetag.vim'
Bundle 'mhz/vim-matchit.git'
Bundle 'vim-scripts/tComment'
Bundle 'Raimondi/delimitMate'
Expand All @@ -34,7 +33,6 @@ Bundle 'vim-scripts/mru.vim'
"Snipmate
Bundle 'msanders/snipmate.vim'
Bundle 'vim-scripts/snipmate-snippets'
"Bundle 'vim-scripts/AutoComplPop' because there is the creator refer to neocomplcache
Bundle "Shougo/neocomplcache"

" Python development
Expand All @@ -51,7 +49,7 @@ Bundle 'godlygeek/tabular'
Bundle 'jamescarr/snipmate-nodejs'
Bundle 'wavded/vim-javascript'
Bundle 'lunaru/vim-less'
Bundle 'joestelmach/javaScriptLint.vim'
"Bundle 'joestelmach/javaScriptLint.vim'

" Syntax checking
Bundle 'scrooloose/syntastic'
Expand Down Expand Up @@ -115,7 +113,6 @@ filetype plugin indent on " required!
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Sets how many lines of history VIM has to remember
set history=1000
set undolevels=1000

" Ignore some file
set wildignore=*.swp,*.bak,*.pyc,*.class
Expand Down Expand Up @@ -213,6 +210,11 @@ set nobackup
set nowb
set noswapfile

set undodir=~/.vim/undodir
set undofile
set undolevels=1000 "maximum number of changes that can be undone
set undoreload=10000 "maximum number lines to save for undo on a buffer reload

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Moving around, tabs and buffers
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
Expand Down
38 changes: 18 additions & 20 deletions README.md
@@ -1,56 +1,58 @@
VIM-Netbeans
=============

We want use VIM as great as Netbeans for editing PHP, Phyton, JS, HTML, XML and many else filetype.
use VIM as great as Netbeans for editing PHP, Python, JS, HTML, XML and many else filetype.

Now this VIM-Netbeans supported with NodeJS, Stylus, Less and many CSS/Javascript engine, template, parser
This have several great feature :

This VIM bundled with many plugins, syntax and custom .vimrc configuration.
- Supported with NodeJS, Stylus, Less and many CSS/Javascript engine, template, parser
- Integrated with JavascriptLint for auto-checking syntax
- Have great Python checking and fast shortcut like `Shift - e` for execute current files
- Use Vundle for managing plugins
- `F8` for Browser files and Tags
- Check .vimrc to see many feature and goodies bag

This VIM is inspired by many great developers that share their custom VIM configuration.

All TLDR; documentation located in .vimrc. You can read and follow link there to see related projects used.
This VIM is inspired by many great developers that share their custom VIM configuration.


Installing
-----------

Go to your Command / Terminal :

{% codeblock %}
cd ~/

git clone git://github.com/yodiaditya/vim-netbeans.git vim-netbeans

git clone https://github.com/yodiaditya/vim-netbeans.git
cd vim-neatbeans

vim .vimrc
{% endcodeblock %}


When opening .vimrc, do ":BundleInstall" to install all package and exit by :wq.

{% codeblock %}
rm -rf .vim/bundle/snipmate.vim/snippets

ln -s ~/vim-netbeans/.vim ~/.vim

ln -s ~/vim-netbeans/.vimrc ~/.vimrc
{% endcodeblock %}

Change your TAB behaviour between PyDiction and Snipmate by follow this link :

http://stackoverflow.com/questions/1687252/with-vim-use-both-snipmate-and-pydiction-together-share-the-tab-key

But i prefer using CTRL+Space as Snipmate Completion. Here a how to make it :

vim .vim/bundle/snipmate.vim/after/plugin/snipMate.vim
`vim .vim/bundle/snipmate.vim/after/plugin/snipMate.vim`

Edit start from line 15 :

{% codeblock %}
"ino <silent> <tab> <c-r>=TriggerSnippet()<cr>

"snor <silent> <tab> <esc>i<right><c-r>=TriggerSnippet()<cr>

ino <silent> <C-Space> <c-r>=TriggerSnippet()<cr>

snor <silent> <C-Space> <esc>i<right><c-r>=TriggerSnippet()<CR>

{% endcodeblock %}


Dependencies
Expand All @@ -68,9 +70,7 @@ A. Python Debugger like pyflakes, pylint and pep8
For installing Python debugger using PIP :

`sudo pip install git+git://github.com/kevinw/pyflakes.git`

`sudo pip install pylint`

`sudo pip install pep8`

Read .vimrc for magic keys and guide.
Expand All @@ -93,9 +93,7 @@ Also add this into .vim/bundle/javaScriptLint.vim/plugin/javaScriptLint.vim :


" set up commands

command! JavaScriptLintExec call JavascriptLint()

command! JavaScriptLintClear call s:ClearCursorLineColor()


Expand Down

0 comments on commit d9199fb

Please sign in to comment.