(Change <tt> to <code>, perhaps also minor tweak.)
Line 16:
Line 16:
Many applications can be configured with an external pop-up editor, but require "popping up" to be the editor's default mode (for example, [[wikipedia:File Roller|File Roller]], the GNOME desktop archive editor). This is a problem when you do not have gvim installed, or when you simply prefer to use "normal" Vim from within your preferred terminal (for example, gnome-terminal).
Many applications can be configured with an external pop-up editor, but require "popping up" to be the editor's default mode (for example, [[wikipedia:File Roller|File Roller]], the GNOME desktop archive editor). This is a problem when you do not have gvim installed, or when you simply prefer to use "normal" Vim from within your preferred terminal (for example, gnome-terminal).
−
Create a file named <tt>vim-gnome</tt> with the following contents, and place it on your execution PATH (and use <tt>chmod +x vim-gnome</tt> to make <tt>vim-gnome</tt> executable):
+
Create a file named <code>vim-gnome</code> with the following contents, and place it on your execution PATH (and use <code>chmod+xvim-gnome</code> to make <code>vim-gnome</code> executable):
<syntaxhighlight lang="Bash">
<syntaxhighlight lang="Bash">
#!/bin/sh
#!/bin/sh
Line 23:
Line 23:
</syntaxhighlight>
</syntaxhighlight>
−
This wrapper handles passing extra arguments to Vim, so you can enter things like <tt>vim-gnome myfile.txt +42</tt> to edit <tt>myfile.txt</tt> and jump to line 42.
+
This wrapper handles passing extra arguments to Vim, so you can enter things like <code>vim-gnomemyfile.txt+42</code> to edit <code>myfile.txt</code> and jump to line 42.
−
Now you can use <tt>vim-gnome</tt> everywhere that you could have used <tt>gvim</tt>, or any other pop-up editor.
+
Now you can use <code>vim-gnome</code> everywhere that you could have used <code>gvim</code>, or any other pop-up editor.
created June 14, 2010 · complexity basic · author A generic person · version 7.0
This tip shows how to use Vim from within a pop-up gnome terminal as an alternative to using gvim. Because most graphical terminals accept a "command string" that is executed when they start running, the technique shown here is easily generalized to other terminal types.
Many applications can be configured with an external pop-up editor, but require "popping up" to be the editor's default mode (for example, File Roller, the GNOME desktop archive editor). This is a problem when you do not have gvim installed, or when you simply prefer to use "normal" Vim from within your preferred terminal (for example, gnome-terminal).
Create a file named vim-gnome with the following contents, and place it on your execution PATH (and use chmod +x vim-gnome to make vim-gnome executable):
#!/bin/shARGS="$@"
gnome-terminal -e"vim $ARGS"
This wrapper handles passing extra arguments to Vim, so you can enter things like vim-gnome myfile.txt +42 to edit myfile.txt and jump to line 42.
Now you can use vim-gnome everywhere that you could have used gvim, or any other pop-up editor.