VIM for Python and Django Development
VIM for Python and Django Development
VIM-PyDjango created by Programmer for Programmer who work on Python & Django everyday.
It's coming with several features :
Autocomplete, Pep8 checker, File Manager, Function bar, detect unused module/variable, Auto-Commenting, Python/Django/Custom snippets and many else!
How it works ?
It will detect automatically your code while typing. All code will show with related options.
Code mistake, unused variable, un-standard Python will checked automatically.
Helpful notification will show on bottom so it not disturb your view.
Not only for python files, it also pay attention for html, js and all django related files.
Watch Video example usage on :
http://www.youtube.com/watch?v=a-KfmxoxdfI
Installation
It using Vundle for manage all plugin. Install Vundle by :
sudo apt-get install git
cd ~/
git clone git://github.com/yodiaditya/vim-pydjango.git
ln -s ~/vim-pydjango/.vim ~/.vim
ln -s ~/vim-pydjango/.vimrc ~/.vimrc
git clone http://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
To install. please do :
vim ~/.vimrc
:BundleInstall
Follow https://github.com/gmarik/vundle for more detailed information.
Don't forget to install dependency packages (I'm using Ubuntu 11.10):
sudo apt-get install python-setuptools python-pip exuberant-ctags
sudo pip install git+git://github.com/kevinw/pyflakes.git
sudo pip install pylint
sudo pip install pep8
Python Programming Standards
There are several standards used in this VIM
Pep8
PyFlakes
Convert HAML into HTML using Sparkup
Auto-Commenter
Debugging Python
For debugging Django with Development Server, I use ipdb
import ipdb; ipdb.set_trace()
To install ipdb on Ubuntu :
sudo apt-get install ipython
sudo pip install ipdb
Development Rules
VIM-PyDjango use 80 lines terminals ( Good for development )
It using tab & space size as Python standard.
Shorcut keys
Leader = ,
MRU = , + space
Pep8 = F6
FileManager + Tagbar = F8
FileManager = , + t
FuzzFinder Files = F2
FuzzFinder Buffer = , + b
Tagbar = , + l
Paste = Ctrl + V
Plugin Installed
Color scheme Mustang : http://hcalves.deviantart.com/art/Mustang-Vim-Colorscheme-98974484
Syntastic :https://github.com/scrooloose/syntastic
FuzzyFinder : http://www.vim.org/scripts/script.php?script_id=1984
L9 : http://www.vim.org/scripts/script.php?script_id=3252
Pyflakes : https://github.com/kevinw/pyflakes-vim
Pep8 : https://github.com/vim-scripts/pep8
NerdTree : https://github.com/scrooloose/nerdtree
NerdCommenter : https://github.com/scrooloose/nerdcommenter
Tagbar : https://github.com/majutsushi/tagbar
Sparkup : http://jetpackweb.com/blog/2010/03/04/write-html-faster-with-sparkup-vim-and-textmate/
MRU : https://github.com/vim-scripts/mru.vim
Tagbar : https://github.com/majutsushi/tagbar
IndentPython : https://github.com/vim-scripts/indentpython.vim
Fugitive : https://github.com/tpope/vim-fugitive
Why you should use this ?
VIM-PyDjango using latest and updated VIM plugins and tools.
Cut a lot time for develop python & django applications after use it!
Deprecated
I no longer use VIM-Debug from http://github.com/jabapyth/vim-debug.
You can see how to installation and screenshots there.
UltiSnips : http://www.vim.org/scripts/script.php?script_id=2715
NeoComplcache : https://github.com/Shougo/neocomplcache
VIM for Python and Django Development的更多相关文章
- [Django] Setting up Django Development Environment in Ubuntu 14.04
1. Python Of course you will need Python. Still Python 2.7 is preferred, however if you would like t ...
- 051.Python的Django框架简单使用
一 HTTP相关概念 http协议包含由浏览器发送数据到服务器需要遵循的请求协议与服务器发送数据到浏览器需要遵循的响应协议.用于HTTP协议交互的信息被为HTTP报文.请求端(客户端)的HTTP报文 ...
- [Python] 利用Django进行Web开发系列(一)
1 写在前面 在没有接触互联网这个行业的时候,我就一直很好奇网站是怎么构建的.现在虽然从事互联网相关的工作,但是也一直没有接触过Web开发之类的东西,但是兴趣终归还是要有的,而且是需要自己动手去实践的 ...
- Python 学习笔记13:Python + wsgi + django 配置。坑爹的python3和wsgi不兼容的解决
今人不见古时月,今月曾经照古人.生命是如此的美丽与短暂! 学习Python已经两个月了,Python的语法通过做简单的语法题和看Python语法介绍,有了初步的了解.但上班还是要做别的事情,所以感觉学 ...
- 第四百零五节,centos7下搭建sentry错误日志服务器,接收python以及Django错误,
第四百零五节,centos7下搭建sentry错误日志服务器,接收python以及Django错误, 注意:版本,不然会报错 Docker >=1.11Compose >1.6.0 通过d ...
- Python的Django REST框架中的序列化及请求和返回
Python的Django REST框架中的序列化及请求和返回 序列化Serialization 1. 设置一个新的环境 在我们开始之前, 我们首先使用virtualenv要创建一个新的虚拟环境,以使 ...
- 052.Python前端Django框架路由层和视图层
一.路由层(URLconf) 1.1 路由层简单配置 URL配置(URLconf)就像Django 所支撑网站的目录.它的本质是URL与要为该URL调用的视图函数之间的映射表:你就是以这种方式告诉Dj ...
- [Python] 利用Django进行Web开发系列(二)
1 编写第一个静态页面——Hello world页面 在上一篇博客<[Python] 利用Django进行Web开发系列(一)>中,我们创建了自己的目录mysite. Step1:创建视图 ...
- Window环境下Python和Django的安装
转载地址:http://blog.csdn.net/haoni123321/article/details/7593821 1.下载python,本文使用python-2.7.2.msi 2.下载dj ...
随机推荐
- php 实现接收客户端上传的图片
今天,遇到一个服务端接收客户端上传图片的需求,经过学习.我写了个简单的demo 以备下次学习. 首先服务器接收的发送图片的请求一定要是post请求,而且请求一定要加上 enctype="mu ...
- git查看提交历史
git日志的查看 在使用 Git 提交了若干更新之后,又或者克隆了某个项目,想回顾下提交历史,我们可以使用 git log 命令查看. 查看日志信息: $ git log 可以用 --oneline ...
- 网上找到的一个jquery版网页换肤特效
这个跟我之前在锋利的JQuery那本书里看到的那个一模一样. <!DOCTYPE html> <html> <head> <meta name="& ...
- 【BZOJ 2599】【IOI 2011】Race 点分治
裸的点分治,然而我因为循环赋值$s$时把$i <= k$写成$i <= n$了,WA了好长时间 #include<cstdio> #include<cstring> ...
- java中的this和super的作用和异同和C++中调用父类的构造函数
来源于:http://www.cnblogs.com/hasse/p/5023392.html 这几天看到类在继承时会用到this和super,这里就做了一点总结,与各位共同交流,有错误请各位指正~ ...
- zabbix的使用
1,zabbix运行流程 2功能特性 1数据收集 2灵活触发器 3高度可定制告警 4实时绘图功能 5web监控能力 6多种可视化展示 7历史数据存储 8配置容易 9API功能 10.......... ...
- ES6新特性:Javascript中Generator(生成器)
ES6的很多特性都跟Generator扯上关系,而且实际用处比较广, 包含了任何需要异步的模块, 比如ajax, filesystem, 或者数组对象遍历等都可以用到: Generator的使用: G ...
- nutch1.4 在windows下面提示 java.io.IOException: CreateProcess error=2, ϵͳÕҲ»µ½ָ¶
eclipse运行nutch1.4在window下面提示异常解决 需要安装cynwin,被设置环境变量 1:安装cygwin 注:在选择要安装的软件包的时候我选择了在All这一行上后面的Default ...
- Echarts-画叠加柱状图,双折线图
导入echarts包 <script src='../scripts/libraries/echarts/echarts-all.js'></script> js如下 load ...
- js-设置焦点
function CheckForm() { if(document.form1.trainingName.value==""){ alert("培训班名称不能为空!&q ...