Tagged Questions
2
votes
4answers
142 views
xsel < /tmp/xselection not working in script
I'm trying to use the following script:
#!/usr/bin/env bash
# Edit xselection in gvim
xsel > /tmp/xselection
gvim /tmp/xselection
xsel < /tmp/xselection
But the final line does not seem to be ...
5
votes
1answer
186 views
Interactive tree command
Is there any version of tree command that displays file structure as a tree structure, but in a way that I can interactively walk trough?
Why do I need it exactly - I am trying to simulate TextMate ...
13
votes
8answers
1k views
What are the best general purpose programming tools to complement Vim?
I've been using Vim as my text editor for a little while now and I feel like I'm taking the long way to do anything. I use ctags to tag my code base for navigation and I use grep (although ...