Tagged Questions
-4
votes
1answer
46 views
Executing buffer content with Python to split window without freezing for long execution times
Now I have map <F5> :w<CR>:!python %<CR> and if my script is doing long term work, vim freezes.
I want to direct output of script to the split window. Like tail -f but in vim.
Are ...
0
votes
1answer
66 views
Vim Editor->clang_complete: no python support available
Case: Testing clang_complete with gVim 7.3
I installed MinGW, then followed the tutorial here to download and compile clang. It compiled for around an hour, then make install. Clang worked. I ...
0
votes
1answer
101 views
Python and Homebrew Vim
On my Mac, I use MacVim with homebrew for most of my editing.
~|⇒ vim --version
VIM - Vi IMproved 7.3 (2010 Aug 15, compiled Jun 20 2012 13:16:02)
Compiled by root@apple.com
Normal version without ...
-2
votes
3answers
95 views
Can Python be run from within the vim editor? [duplicate]
Is it possible to run Python code from within the vim editor?
What is necessary to install the support along with Python syntax highlighting?
How would I install "python.vim : Enhanced version of ...
2
votes
2answers
64 views
Auto indent doesn't work when using vim coding python
I want to use vim to write python code but there is a problem on auto indention.
First I downloaded the latest python.vim from http://www.vim.org/scripts/script.php?script_id=790 and putted it in the ...
1
vote
1answer
48 views
Nice general way to always invoke python debugger upon exception
I'd like to have my debugger run post_mortem() any time an exception is encountered, without having to modify the source that I'm working on. I see lots of examples that involve wrapping code in a ...
1
vote
4answers
126 views
How do I execute a Python Script using Vim
(very new) Vim newbie question
I open gVim.
I then using the File Menu and MenuItem Open to open a file pi.py which has the following tiny script:
How do I execute this code using gVim?
EDIT
...
1
vote
2answers
80 views
Edit multiple files in 1 vim buffer
I'm making a vim script to take notes, and it should be tag aware.
So when I add a note it should appear under all the correct sections like this:
To avoid making lots of copies of the same text ...
0
votes
0answers
58 views
Compiling Python with --enable-shared does not produce libpython2.7.a
I am building this vim plugin, and I ran into some trouble with python during its build process.
First it was giving this issue:
$ make ycm_core
[ 90%] Built target BoostParts
Linking CXX shared ...
0
votes
1answer
68 views
How to change Python shell editor to vim
I always have this question about how to change the python shell editor.
simple example:
$python
Python 2.7.3 (default, Aug 1 2012, 05:14:39)
[GCC 4.6.3] on linux2
Type "help", "copyright", ...
1
vote
2answers
55 views
ctags vim - go to method definition in same python class
I have two classes in a python source file.
class A:
def func(self):
pass
class B:
def func(self):
pass
def run(self):
self.func()
When my cursor is in class B's ...
1
vote
1answer
34 views
Removing entries from syntastic
I'm working on a project that uses gettext and so end up with a lot of error results in syntastic (using flake8) that say:
undefined name '_'
i don't want to remove W802, but i would like to ...
2
votes
2answers
84 views
How to enable python3 in vim?
I've been using vim for some time, and now in a need to use the python3 feature.
If I type vim --version | grep python I get -python3
How can I do to enable it?
2
votes
0answers
97 views
Moving from Eclipse to Vim for my pet Python [closed]
I am a programer going through a early-mid coder crisis. I was brought up on Elipse, learning it as I learned java. and when I had to learn C I ran back to it, because its code completion, debugger ...
2
votes
0answers
76 views
start python pdb with multiple arguments?
I was wondering if there is a way to start pdb with multiple arguments.
Currently I know I can do this:
python -m pdb script.py
and then manually setup break points, with:
(Pdb) break
(Pdb) ...
1
vote
2answers
105 views
Debug python flask application in vim
Does anybody debug flask application in vim using this one for example.
What I want:
I want to set break point in controller method for example
def login():
(breakpoint)>> some code
...
...
...
0
votes
1answer
159 views
MacVim vdebug python error
I am trying to use vdebug with MacVim and xdebug to debug code. I have MacVim and python installed via homebrew and xdebug is installed and working fine with MacGDBp.
When I listen in vdebug with ...
-4
votes
1answer
129 views
Is it possible to make vim behave more like a python IDE? [closed]
Are there any commands in vimscript or any extensions that I could use?
I already use syntax highlighting but I was hoping for error highlighting or warnings if thats possible.
1
vote
2answers
77 views
Word delimitors for python coding style?
PEP8 use _ as a word delimitor, for example, a method named get_context_data.
caw is so cool when you want change get_context_data to set_context_data.
I googled and added set iskeyword-=_ to my ...
0
votes
0answers
35 views
Vim in insert mode jumps to start of line when entering # [duplicate]
For some reason when I create a new line in vim and the first character I enter is "#" (to add a comment in python for example) vim cancels the automatically created tabs and moves the number sign and ...
2
votes
1answer
68 views
Why does subprocess.Popen use an old version of vim?
When I run vi --version, I see VIM - Vi IMproved 7.3 and yet when I run the following script, it prints that I have version 7.2. Why?
The pathname is vi. which vi prints /usr/local/bin/vim and that ...
1
vote
3answers
64 views
How to select the current parameter of a function in vim
Using VIM to code in Python I often have to change or delete the parameters of functions.
I expected to find a command like ci, to select the text between two commas. Somehow like selecting between ...
0
votes
2answers
211 views
autopep8 with vim
I have the following vimrc and just wonder how could I apply autopep8 to the vimrc?
Thank you in advance.
1
vote
1answer
203 views
syntastic with python no warnings and error arrows
I have following vimrc, but I do not get arrows for warnings and error from syntastic
like on the picture below
Further more I am not able to use the ruler with set ruler. Why I do not get a ...
-2
votes
1answer
53 views
vim + python buffer replacement using the “blackhole register”
A simple python operation in vim scripting:
vim.current.buffer[current] = 'new line';
This overrides the current register, which I do not wish do to.
In other words, I want to replace the line ...
1
vote
1answer
60 views
Getting Vim to be aware of ctag type annotations for python
I use Vim+Ctags to write Python, and my problem is that Vim often jumps to the import for a tag, rather than the definition. This is a common issue, and has already been addressed in a few posts here.
...
2
votes
0answers
227 views
jedi-vim omni completion with not standard library
I read the README of the jedi-vim.
https://github.com/davidhalter/jedi
There are screenshots of omni completing with not standard library (django).
I installed django by pip and tried exact same ...
2
votes
4answers
116 views
How do I replace all commas with comma spaces (pep8)?
I wrote some Python code and unfortunately forgot a few spaces after commas (trying to follow Pep8). How can I replace the commas with commas followed by spaces. The trick here is that some commas ...
2
votes
1answer
118 views
Block indenting/un-indenting python code in vim
I'm deciding to switch from tabs to spaces in my python code. Previously, if I wanted to indent/unindent a block of code in vim, I would use the >> or << commands.
I'm using the vimrc ...
0
votes
1answer
44 views
Enabling execution of multi-line statements within the Python's debugger(pdb) conveniently
Running !import code; code.interact(local=vars()) inside the pdb prompt allows you to input multiline statements(e.g. a class definition) inside the debugger(source). Is there any way to omit having ...
0
votes
0answers
90 views
Python (Django) autocompletion in Vim not working even with right path
I followed Sontek's guide and everything was fine until the part about configuring virtual and Django autocomplete. The instructions he gives to get it to work are replicated in every place I looked ...
1
vote
1answer
81 views
vim commands in snipmate snippet
I am using snipmate plugin with vim. How can I write any commands in snipmate snippet that I would be able to write to .vimrc? Like <ESC>, <leader>, <cr> and so on...
I want to be ...
1
vote
1answer
70 views
Get absolute path of myvim.vim file in Python code block
I'm trying to write a vim plugin that uses a Python code block inside of it. I would like to get the full path of myvim.vim (/home/myusername/.vim/bundle/myvim/plugin/myvim.vim) inside of my python ...
0
votes
1answer
243 views
Vim Omnicomplete Pattern not found (Python)
I read that omnicompletion should work 'out of the box' but it doesn't, and I wonder what I'm doing wrong.
I compiled the latest version of vim and it shows "+python":
user$ vim --version
VIM - Vi ...
0
votes
1answer
58 views
vim for epd python on windows
I have installed epd python distribution on my windows. Can anyone help me in setting up vim now? also, some help on basic quick tweaks on vim (syntax , color support etc.) would be helpful.
need ...
0
votes
1answer
53 views
python : cannot instantiate more than one or two variables (SyntaxError raised)
Since yesterday, I'm having a strange issue when testing new Python scripts. When running the script, I get a 'SyntaxError: invalid syntax' on one of the first variable assignment.
For exemple, this ...
3
votes
2answers
124 views
Vim won't properly indent Python code when using the = command
When I use the = command to indent an entire Python file or a section it won't properly indent it. Here's my vimrc:
set nocompatible
syntax on
set ruler
set tabstop=2
set softtabstop=2
set ...
3
votes
5answers
140 views
list all functions defined in a file
When editing a python file, what is a good way to get all functions or classes listed plus the opportunity to jump to the lines where they are defined?
1
vote
1answer
63 views
How can I tell subprocess to stop escaping my quotes?
I'm trying to call Vim using subprocess, and pass it an argument. For example:
subprocess.call(['gvim.exe', ''' "+map <F5> :echo 'Hello!'<cr>" '''])
This command works on the command ...
3
votes
3answers
168 views
How can VIM tell the difference between `Ctrl-J` and `LF`?
I'm trying to create a little Python/curses app.
But as far as I can see there's no way to tell whether
CTRL+J or Enter have been pressed. Now this may be caused by the fact that they both have the ...
0
votes
1answer
131 views
Execute different version of python in .vimrc file
I am trying to get powerline.vim to work and the problem is that on setup it is trying to run the wrong version of python. This line is causing the problem.
python from powerline.ext.vim import ...
0
votes
2answers
225 views
Missing module in python
I recently tried installing powerline-vim, but have been running into problems with it.
Every time I open a new window, I see this error:
Error detected while processing function ...
4
votes
3answers
477 views
vim as a python ide
Python support is integrated in the latest versions of emacs. For example C-c C-z provides me an interpreter and C-c C-c automatically interprets the file I'm working on without moving to the other ...
1
vote
2answers
103 views
Capture output of vim command in Python
I want to capture the output of a Vim command (:sign place), scripting in Python with the vim module.
I can execute commands with vim.command(...), but this doesn't return the output of the command. ...
2
votes
5answers
84 views
How to a posteriori change/redefine indentation or shift width in VIM in a file?
I want to change indentation in all my existing(!) Python files from shift width (sw=2) to sw=4. Any suggestions how to do this in vim?
2
votes
2answers
53 views
Is there a good way or a plugin that can easily go to the end of a function of python in vim
When I look at python code, I find it is hard to find out where is the end of a function if it has too much lines of code.
I first think about just to find next def will be ok. But if the function is ...
4
votes
2answers
172 views
How to launch Vim in Python interpreter?
In Ruby there is a gem called interactive_editor which allows entering a vim session when entering vi in Ruby interpreter.
Literally we need to require interactive_editor.rb in ~/.irbrc file, like ...
2
votes
0answers
125 views
Extend Vim GUI using Python tkinter
I know there are a few ways to integrate gVIM in GTK using gtk.Socket and DBUS:
Pida
gtkvim
anjuta-gvim
VEE
VimMate
Vizinho
But I was wondering if it is possible to say have a python plugin that ...
1
vote
0answers
244 views
vim code completion and PyDoc problems
Unfortunately, I am not able to get os.path.join as code completion only os.path. The other problem is that pydoc is not open automatically in a new window above the source code. How is it possible to ...
3
votes
1answer
146 views
Is there a python syntax checker that can ignore ' assigned to but never used' when locals() is present?
suppose I have the code
def foo():
bar = 1
wibble = 3
return locals()
my current syntax checker (flake8 with syntastic.vim) will throw a 'assigned to but never used' error on both ...
