profile.git
14 years agoExploit bash POSIXLY_CORRECT mode.
Iain Patterson [Wed, 17 Mar 2010 13:28:57 +0000 (13:28 +0000)]
Exploit bash POSIXLY_CORRECT mode.

Avoid ugly --rcfile lines in ps output by exploiting the fact that a
POSIX mode bash will read startup commands from the file specified in
ENV.
Set ENV and POSIXLY_CORRECT for startup, unsetting them and disabling
POSIX mode as the first actions in the new shell.

14 years agoMantis 402.
Iain Patterson [Mon, 15 Mar 2010 13:34:50 +0000 (13:34 +0000)]
Mantis 402.

Don't use mktemp in become and became.  Some systems don't have it and
others want different arguments.

14 years agoMore checks in become.
Iain Patterson [Thu, 11 Mar 2010 11:53:25 +0000 (11:53 +0000)]
More checks in become.

Check target user is valid before proceeding.
Don't delegate X11 cookie to non-root users by default.

14 years agoSCREENDIR checks.
Iain Patterson [Wed, 10 Mar 2010 14:20:00 +0000 (14:20 +0000)]
SCREENDIR checks.

Use bash builtin -g to check for setgid screen.
Make SCREENDIR if it doesn't already exist.

14 years agoAllow passing Kerberos credentials when becoming.
Iain Patterson [Fri, 5 Mar 2010 12:14:01 +0000 (12:14 +0000)]
Allow passing Kerberos credentials when becoming.

Use the -k flag to become to pass Kerberos credentials to the
target user even if this is not root.

14 years agoRemoved unnecessary subshell for tty -s check.
Iain Patterson [Fri, 26 Feb 2010 07:50:03 +0000 (07:50 +0000)]
Removed unnecessary subshell for tty -s check.

14 years agoSanity check path rules with embedded variables.
Iain Patterson [Thu, 18 Feb 2010 10:44:46 +0000 (10:44 +0000)]
Sanity check path rules with embedded variables.

14 years agoAdd target UID to KRB5CCNAME when becoming.
Iain Patterson [Fri, 12 Feb 2010 10:51:17 +0000 (10:51 +0000)]
Add target UID to KRB5CCNAME when becoming.

14 years agobecome overhaul.
Iain Patterson [Fri, 5 Feb 2010 13:53:00 +0000 (13:53 +0000)]
become overhaul.

Pass commands to sudo through stdin.
Use these commands to set the environment for the destination user.
Replace all $HOME paths with $PROFILE_HOME, set when becoming.
Make .become/all optional as its functionality has been moved.

14 years agoFormatting.
Iain Patterson [Fri, 21 Aug 2009 14:09:30 +0000 (15:09 +0100)]
Formatting.

14 years agoFix MarkLine highlighting.
Iain Patterson [Mon, 1 Feb 2010 13:43:55 +0000 (13:43 +0000)]
Fix MarkLine highlighting.

Marks which are highlighted with MarkLine weren't being highlighted
correctly since the big sign code refactoring.

14 years agoHandle git p4 submit.
Iain Patterson [Tue, 26 Jan 2010 13:11:25 +0000 (13:11 +0000)]
Handle git p4 submit.

git p4 submit includes the diff in its change spec so just copy that
rather than doing a diff manually.

14 years agoHandle Kerberos credentials when becoming users other than root.
Iain Patterson [Fri, 15 Jan 2010 14:06:57 +0000 (14:06 +0000)]
Handle Kerberos credentials when becoming users other than root.

14 years agoRestore window height when leaving Vim.
Iain Patterson [Mon, 25 Jan 2010 10:55:31 +0000 (10:55 +0000)]
Restore window height when leaving Vim.

14 years agoDon't leave credentials laying around after sudo.
Iain Patterson [Wed, 13 Jan 2010 18:00:19 +0000 (18:00 +0000)]
Don't leave credentials laying around after sudo.

Add kdestroy to EXIT trap.

14 years agoDon't bother resizing a GUI window before exit.
Iain Patterson [Mon, 4 Jan 2010 15:54:06 +0000 (15:54 +0000)]
Don't bother resizing a GUI window before exit.

Restoring the original terminal size is only worthwhile when we're
running in an actual terminal.  Shrinking a GUI window and then closing
it makes no sense.

14 years agoHandle credentials cache when sudoing.
Iain Patterson [Mon, 4 Jan 2010 15:22:46 +0000 (15:22 +0000)]
Handle credentials cache when sudoing.

If we become root and a credentials cache is already available then take
a copy of it and use the copy.
Don't look for existing caches if we don't already have one.  That gets
complicated.

14 years agoWhitespace.
Iain Patterson [Mon, 4 Jan 2010 15:29:02 +0000 (15:29 +0000)]
Whitespace.

14 years agoMatch CursorColumn highlighting to CursorLine.
Iain Patterson [Mon, 4 Jan 2010 14:48:32 +0000 (14:48 +0000)]
Match CursorColumn highlighting to CursorLine.

14 years agoAdded git submit alias.
Iain Patterson [Mon, 10 Aug 2009 10:36:51 +0000 (11:36 +0100)]
Added git submit alias.

Alias git submit to ``git commit -vuno''.

14 years agoAllow forcing source of .bash_profile.
Iain Patterson [Sun, 3 Jan 2010 15:48:07 +0000 (15:48 +0000)]
Allow forcing source of .bash_profile.

By default .bash_profile is sourced only if we have a controlling
terminal or the shell is a login shell.  Add the ability to force
sourcing by passing the "force" argument to the source command.

  . ~/.bash_profile force

For use in situations where no terminal is available but a full
environment setup is required.

14 years agoDecide whether or not a terminal can be resized.
Iain Patterson [Thu, 17 Dec 2009 10:52:04 +0000 (10:52 +0000)]
Decide whether or not a terminal can be resized.

Use resize.bashrc to set the RESIZABLE environment variable.
If RESIZABLE is 0 the current terminal cannot be resized.
If RESIZABLE is the same as TERM in can be resized.
Maintain a list of terminals we know can't be resized, eg sun-color.
Maintain a list of terminals which we can't be sure about, eg screen
since whether or not screen can be resized depends on the (unknown)
capabilities of the underlying terminal.
For any other terminal assume it can be resized.
In vim, set the g:resizable variable based on the value of RESIZABLE
(and set it to 1 in the GUI).  Call Can_Resize() before trying to resize
the window.
Allow setting g:resizable manually to override this logic.

14 years agoRemove gratuitous exports.
Iain Patterson [Thu, 10 Dec 2009 14:53:39 +0000 (14:53 +0000)]
Remove gratuitous exports.

Don't export variables which exist only for the shell's benefit.

14 years agoIgnore dups in history.
Iain Patterson [Wed, 9 Dec 2009 16:12:43 +0000 (16:12 +0000)]
Ignore dups in history.

14 years agoNew Vim script for P4 merge.
Iain Patterson [Fri, 10 Jul 2009 15:17:59 +0000 (16:17 +0100)]
New Vim script for P4 merge.

14 years agoWindows 64-bit compatibility.
Iain Patterson [Mon, 7 Dec 2009 15:43:39 +0000 (15:43 +0000)]
Windows 64-bit compatibility.

Native 64-bit builds of Vim define win64.  Check for that in addition to
win32 when determining if we are on Windows.

14 years agoUse a shorter title string on Windows.
Iain Patterson [Mon, 7 Dec 2009 15:32:49 +0000 (15:32 +0000)]
Use a shorter title string on Windows.

Titles must fit on to taskbar entries which are usually short.

14 years agoAdded git again alias.
Iain Patterson [Sun, 22 Nov 2009 15:28:53 +0000 (15:28 +0000)]
Added git again alias.

Alias git again to ``git commit --amend -C HEAD''.

14 years agoRemove absolute paths from ts.
Iain Patterson [Wed, 18 Nov 2009 16:04:21 +0000 (16:04 +0000)]
Remove absolute paths from ts.

Paths should have been set correctly by shell startup.  Leaving them in
breaks cross-platform compatibility.

14 years agoFix missing exit code in prompt.
Iain Patterson [Wed, 18 Nov 2009 15:46:57 +0000 (15:46 +0000)]
Fix missing exit code in prompt.

The exit code from the last command was not being shown when the command
failed.  This was a bug introduced by the fixing of escape sequences for
iTerm.

14 years agoRemove broken urxvt vimselection plugin.
Iain Patterson [Thu, 15 Oct 2009 14:13:22 +0000 (15:13 +0100)]
Remove broken urxvt vimselection plugin.

Half the time it doesn't work and we end up pasting junk into another
window.

14 years agoShow more information in screen status.
Iain Patterson [Thu, 15 Oct 2009 10:09:44 +0000 (11:09 +0100)]
Show more information in screen status.

Show server load in hardstatus.
Show date in window list.

14 years agoAllow xterm window resizing.
Iain Patterson [Thu, 12 Nov 2009 15:59:08 +0000 (15:59 +0000)]
Allow xterm window resizing.

Red Hat disables window resizing through xterm escape sequences.
Explicitly re-enable this functionality.

14 years agoMantis 361
Iain Patterson [Thu, 12 Nov 2009 20:33:57 +0000 (20:33 +0000)]
Mantis 361

Hack to make dark grey actually dark when Vim is run under screen in an
88-colour terminal.

14 years agoFix diffs of files with spaces.
Iain Patterson [Wed, 4 Nov 2009 22:01:40 +0000 (22:01 +0000)]
Fix diffs of files with spaces.

Show diffs correctly in p4 and svn Vim scripts when files to diff contain spaces.

14 years agoHandle case where tput doesn't work.
Iain Patterson [Wed, 4 Nov 2009 17:19:15 +0000 (17:19 +0000)]
Handle case where tput doesn't work.

14 years agoFix prompt escape sequences for iTerm.
Iain Patterson [Mon, 26 Oct 2009 14:36:52 +0000 (14:36 +0000)]
Fix prompt escape sequences for iTerm.

iTerm doesn't like setting bold/normal and colour change at the same
time.  Trying to do so yields broken colour settings with blinking and
other strangeness.
Fix it by splitting bold information from the requested colour escape
sequence and setting both separately.

14 years agoSigns tidyup.
Iain Patterson [Mon, 5 Oct 2009 16:01:38 +0000 (17:01 +0100)]
Signs tidyup.

Maintain a list of signs and (un)define them dynamically.
We don't have arrays in Vim 6 so use some string trickery for this.
Place signs in a loop and replace Prep_Signs() with calls to Prep_Sign()
within the sign loop.

14 years agoVim 5 parser strangeness.
Iain Patterson [Tue, 6 Oct 2009 09:27:26 +0000 (10:27 +0100)]
Vim 5 parser strangeness.

Protect unsupported "silent" command in an exec.
This is necessary even though the command is called in a block only
executed by Vim 6 or later.

14 years agoHighlight cursor line when focus is lost.
Iain Patterson [Tue, 6 Oct 2009 10:08:26 +0000 (11:08 +0100)]
Highlight cursor line when focus is lost.

Set cursorline on FocusLost.
Unset cursorline on FocusGained iff it wasn't set before focus was lost.

14 years agoFix setting paths on old bash.
Iain Patterson [Fri, 18 Sep 2009 15:04:14 +0000 (16:04 +0100)]
Fix setting paths on old bash.

Prevent bash 2 from segfaulting when considering directories in
PATH.bashrc.

14 years agoEnvironment overhaul.
Iain Patterson [Fri, 18 Sep 2009 12:16:54 +0000 (13:16 +0100)]
Environment overhaul.

Store XXXdirs files in ~/.PATH and add subdirectories for SYSTEM and
ARCHITECTURE under there.
Remove duplicate entries from paths set in PATH.bashrc.
Also read XXXdirs.pre and XXXdirs.post.
.pre entries are guaranteed to come before whatever was already defined
or is defined with XXXdirs.
.post entries are guaranteed to be present but may not necessarily be
last if they were already defined.

Add paths under opt to default XXXdirs.pre files.
Add /lib to libdirs.post on Solaris as the Solaris linker uses the value
of LD_LIBRARY_PATH to override system defaults.

14 years agoDon't use SCREENDIR under sudo.
Iain Patterson [Tue, 15 Sep 2009 12:59:34 +0000 (13:59 +0100)]
Don't use SCREENDIR under sudo.

If SCREENDIR is set and we sudo the directory will probably be
unusable.  Unset it if SUDO_USER is defined.

14 years agoDon't resize urxvt to zero-size.
Iain Patterson [Tue, 1 Sep 2009 15:08:57 +0000 (16:08 +0100)]
Don't resize urxvt to zero-size.

14 years agoDetect old bash which can't do completion.
Iain Patterson [Tue, 1 Sep 2009 10:56:55 +0000 (11:56 +0100)]
Detect old bash which can't do completion.

14 years agoFind urxvt extensions from sshterm.
Iain Patterson [Fri, 28 Aug 2009 13:07:51 +0000 (14:07 +0100)]
Find urxvt extensions from sshterm.

Change to $HOME before launching sshterm.

XXX: This might break stuff as we previously changed to root to
avoid holding unnecessary NFS handles.

14 years agoBufExplorer options.
Iain Patterson [Wed, 26 Aug 2009 10:03:27 +0000 (11:03 +0100)]
BufExplorer options.

Default options and highlighting for the BufExplorer plugin.

14 years agoAdded -t flag to sshcolourterm.
Iain Patterson [Wed, 26 Aug 2009 10:02:26 +0000 (11:02 +0100)]
Added -t flag to sshcolourterm.

Use -t to set the initial title of the terminal window.

14 years agoCheck for broken KRB5CCNAME.
Iain Patterson [Fri, 21 Aug 2009 14:14:24 +0000 (15:14 +0100)]
Check for broken KRB5CCNAME.

14 years agoPerl extension to massage selections from Vim.
Iain Patterson [Thu, 27 Aug 2009 12:02:40 +0000 (13:02 +0100)]
Perl extension to massage selections from Vim.

Try to strip off marks and numbers from the start of a selection made
within urxvt.
It's a bit hacky and assumes that Vim will resize the terminal when
displaying marks and numbers.

14 years agoProper urxvt resizing.
Iain Patterson [Thu, 27 Aug 2009 10:51:01 +0000 (11:51 +0100)]
Proper urxvt resizing.

Use Perl extension to dynamically change fontsets.
Note that because we can't put variables into the URxvt.perl-lib
resource we assume that urxvt is run from the home directory and can
thus find .urxvt in there.

14 years agoUse :silent instead of :try..:catch..:endtry.
Iain Patterson [Thu, 27 Aug 2009 09:38:45 +0000 (10:38 +0100)]
Use :silent instead of :try..:catch..:endtry.

Some early Vim 6 builds don't have :try..:endtry and since we weren't
doing anything useful with the :catch it's easier to use :silent.

14 years agoWindow resizing fixes.
Iain Patterson [Fri, 21 Aug 2009 14:09:30 +0000 (15:09 +0100)]
Window resizing fixes.

Fixed not shrinking the window when list was toggled off.
Use some trickery to avoid using winnr() on Vim 6.

14 years agoMore display stuff.
Iain Patterson [Fri, 14 Aug 2009 13:26:37 +0000 (14:26 +0100)]
More display stuff.

Unicode alternative for caret sign.

Made Highlight_StatusLine() compatible with Vim 5.
There's still no point calling it with anything less than Vim 7.
Use User1 highlighting to emphasise filename, line and column.

14 years agoNetgroups.
Iain Patterson [Tue, 4 Aug 2009 13:41:53 +0000 (14:41 +0100)]
Netgroups.

Added netgroups.c since the netgroups binary is needed by sshcolourterm.
Be quiet checking netgroups in sshcolourterm.  This allows, for example,
hacking sshcolourterm for an SGE terminal viz:

    env SSHTERM_SSH=qrsh sshterm

14 years agoVarious vim fixes.
Iain Patterson [Thu, 9 Jul 2009 10:31:38 +0000 (11:31 +0100)]
Various vim fixes.

Change some mappings which conflict with plugins.

Unicode in Show_List().

When a new buffer was created BufEnter called Highlight_Signs() which
called Uncluttered_Buffer().  Most of the tests in that function don't
apply until the buffer is completely set up so move the initial call to
Highlight_Signs() to BufReadPost.

Show version in verbose statusline.

Added Extra_Columns() function to determine if column resizing is necessary.
Use it after setting listchars.

Fold up functions.

Use Prep_Sign() to shorten Prep_Signs().
Use Prep_Var() to shorten Iain_Vars().

14 years agoCompview plugin.
Iain Patterson [Wed, 29 Jul 2009 13:54:25 +0000 (14:54 +0100)]
Compview plugin.

14 years agoGrow a column when setting full list mode.
Iain Patterson [Fri, 7 Aug 2009 18:22:17 +0000 (19:22 +0100)]
Grow a column when setting full list mode.

Allow room for when listchars includes eol.

14 years agoUnicode stuff.
Iain Patterson [Fri, 7 Aug 2009 18:08:21 +0000 (19:08 +0100)]
Unicode stuff.

Force UTF-8 on Windows.
Move Unicode availability test to Has_Unicode() function.
Show Unicode signs where possible.

14 years agoFix Vim runtime path when becoming another user.
Iain Patterson [Wed, 5 Aug 2009 10:52:53 +0000 (11:52 +0100)]
Fix Vim runtime path when becoming another user.

14 years agoVim 5 compatibility.
Iain Patterson [Tue, 4 Aug 2009 10:41:03 +0000 (11:41 +0100)]
Vim 5 compatibility.

Vim 5 doesn't have printf() or v:servername.

14 years agoSwap jump keys.
Iain Patterson [Wed, 29 Jul 2009 13:11:32 +0000 (14:11 +0100)]
Swap jump keys.

14 years agoVCSCommand plugins.
Iain Patterson [Thu, 9 Jul 2009 10:42:35 +0000 (11:42 +0100)]
VCSCommand plugins.

14 years agoScript to become another user.
Iain Patterson [Thu, 16 Jul 2009 09:55:55 +0000 (10:55 +0100)]
Script to become another user.

Set per-user initialisation in ~/.become/<user>.

14 years agoCJK font support.
Iain Patterson [Tue, 4 Aug 2009 12:39:47 +0000 (13:39 +0100)]
CJK font support.

14 years agocolordiff.
Iain Patterson [Tue, 4 Aug 2009 14:54:40 +0000 (15:54 +0100)]
colordiff.

14 years agoConsistent screen caption on different terminals.
Iain Patterson [Thu, 23 Jul 2009 16:54:45 +0000 (17:54 +0100)]
Consistent screen caption on different terminals.

The inactive caption line didn't look the same in xterm and PuTTY as it
did in rxvt-unicode.  Instead of using bold and reverse for the black on
white text we now explicitly set white on high-intensity black.  The
result unchanged in rxvt-unicode and now looks the same in other
terminals.
PuTTY needs an explicit C8 termcapinfo to use bold for high-intensity.

14 years agoBufExplorer plugin.
Iain Patterson [Fri, 24 Jul 2009 16:54:07 +0000 (17:54 +0100)]
BufExplorer plugin.

14 years agoVim options.
Iain Patterson [Wed, 22 Jul 2009 09:31:12 +0000 (10:31 +0100)]
Vim options.

Added smarttab option.
Use hex mode for ^A/^X.  Numbers with leading zeros are interpreted as
octals by default.  Usually this is the wrong thing.  Setting hex mode
works most of the time.
Don't jump to the start of the line when using H, L etc.
Use UTF-8 listchars.  [git://github.com/graywh/dotfiles.git]

14 years agoFixed diff colours.
Iain Patterson [Wed, 22 Jul 2009 09:31:02 +0000 (10:31 +0100)]
Fixed diff colours.

Diffs could clash with the underlying syntax.

14 years agoMore signs.
Iain Patterson [Thu, 9 Jul 2009 09:19:34 +0000 (10:19 +0100)]
More signs.

Highlight the (, ), { and } marks.
Highlight the ^ mark in red.

14 years agoSet diff mode columns sensibly.
Iain Patterson [Thu, 9 Jul 2009 14:25:11 +0000 (15:25 +0100)]
Set diff mode columns sensibly.

14 years agoAdded ts script.
Iain Patterson [Tue, 14 Jul 2009 09:28:59 +0000 (10:28 +0100)]
Added ts script.

Script to show files modified today.  (t)oday l(s): ts.

14 years agoWindows compatibility.
Iain Patterson [Thu, 9 Jul 2009 15:14:04 +0000 (16:14 +0100)]
Windows compatibility.

Handle the case where HOME contains spaces, eg on NT 5.
Force the Vim runtime path to contain ~/.vim.

14 years agoHandle uncluttered buffers.
Iain Patterson [Fri, 26 Jun 2009 16:58:37 +0000 (17:58 +0100)]
Handle uncluttered buffers.

Don't set signs and numbers if Uncluttered_Buffer() returns true.
A buffer is uncluttered if the uncluttered_buffer variable is true.
A buffer is uncluttered if buftype is non-null.
A buffer is uncluttered if its filetype is svn, perforce or gitcommit.

14 years agoVim fixes.
Iain Patterson [Wed, 8 Jul 2009 14:57:55 +0000 (15:57 +0100)]
Vim fixes.

Don't set mouse options if we can't get the X11 clipboard.
Don't set the toolbar in gvim.
Ensure we call Startup_Resize() AFTER signs and numbers have been set.
Scope fix in TabModified().

14 years agoColour tweaks.
Iain Patterson [Wed, 8 Jul 2009 14:52:52 +0000 (15:52 +0100)]
Colour tweaks.

Added colours for NERD_tree.
256-colour LineNr and friends were too dark.
StatusLine and StatusLineNC weren't consistent.
Moved MatchParen highlighting into the colourscheme.

14 years agoUse -bg for background colour.
Iain Patterson [Wed, 8 Jul 2009 14:42:35 +0000 (15:42 +0100)]
Use -bg for background colour.

Launch terminal with the correct background colour using the -bg option.
Force a black internal border for urxvt so that different coloured
terminals don't look weird with Vim marks and numbers.

14 years agoVim 5 compatibility
Iain Patterson [Tue, 7 Jul 2009 13:32:36 +0000 (14:32 +0100)]
Vim 5 compatibility

Vim 5 doesn't recognise the <SID> prefix for functions or the += syntax
for variable assignment.  It also doesn't recognise variables in the
global scope without an explicit g: prefix.
Rewrite Startup_Resize() and Resize_Columns() with the above in mind.

14 years agoDetect en_GB.utf8 locale.
Iain Patterson [Wed, 1 Jul 2009 15:21:25 +0000 (16:21 +0100)]
Detect en_GB.utf8 locale.

14 years agoFeature tidyup.
Iain Patterson [Sun, 28 Jun 2009 14:36:27 +0000 (15:36 +0100)]
Feature tidyup.

Check for the signs feature before trying to use sign-related functions.
Batch up startup resize operations to avoid racing with screen.

14 years agoColour tidyup.
Iain Patterson [Sun, 28 Jun 2009 14:24:59 +0000 (15:24 +0100)]
Colour tidyup.

Use iain scheme even in gvim.
Use a darker background for gvim.
Use darker background for LineNr and folds.
Highlight StatusLine in a sensible way.

14 years agoShow various marks in the left margin.
Iain Patterson [Fri, 26 Jun 2009 13:32:48 +0000 (14:32 +0100)]
Show various marks in the left margin.

Use signs to highlight the location of the following marks (see help on
'x for information on mark x): a-f A-F .  ' " ^ < > [ ]
Toggle marks with \m.
Update marks when entering/leaving insert mode and when CursorHold is
triggered.  Trigger CursorHold after 500ms to reduce lag.
Show marks and numbers by default.  Set terminal mouse mode to allow
copying text from Vim to work as expected with the left margin showing
stuff.
Make sure the window isn't resized every time .vimrc is sourced.
Split autocommands into groups to help keep track of all this stuff..

14 years agoUse consistent colours.
Iain Patterson [Fri, 26 Jun 2009 11:50:29 +0000 (12:50 +0100)]
Use consistent colours.

Use the same grey in VertSplit as in StatusLineNC.
Use a green Cursor.

14 years agoResize windows inside screen.
Iain Patterson [Tue, 23 Jun 2009 10:39:19 +0000 (11:39 +0100)]
Resize windows inside screen.

14 years agoHighlight readonly buffers.
Iain Patterson [Thu, 18 Jun 2009 10:31:49 +0000 (11:31 +0100)]
Highlight readonly buffers.

Abstract colours of the statusline and show a red statusline when trying
to edit a buffer with &ro set.

14 years agoNERD_tree plugin.
Iain Patterson [Fri, 26 Jun 2009 12:07:45 +0000 (13:07 +0100)]
NERD_tree plugin.

14 years agoLatest attempt to fix commit diffs.
Iain Patterson [Tue, 16 Jun 2009 11:09:38 +0000 (12:09 +0100)]
Latest attempt to fix commit diffs.

14 years agoRegression.
Iain Patterson [Wed, 10 Jun 2009 15:47:29 +0000 (16:47 +0100)]
Regression.

Fixed p4 diff breaking as a result of the directory change.

14 years agoPerforce and SVN Vim script fixes.
Iain Patterson [Wed, 10 Jun 2009 13:27:10 +0000 (14:27 +0100)]
Perforce and SVN Vim script fixes.

Check for existence of p4 script before setting $P4EDITOR.
Work around weird bug whereby calling "file [p4 diff]" when in a
directory with a subdirectory called ``d'' would confuse Vim.
Removed old debugging code which shouldn't have been still there.

14 years agopumheight was introduced in Vim 7.
Iain Patterson [Wed, 10 Jun 2009 10:29:42 +0000 (11:29 +0100)]
pumheight was introduced in Vim 7.

14 years agoVim completion stuff.
Iain Patterson [Wed, 10 Jun 2009 10:11:34 +0000 (11:11 +0100)]
Vim completion stuff.

Use ^B to search backward when completing.  ^P conflicts with screen.
Use ^L to show matching completions but don't select one.
Limit the size of the popup menu.
Set popup menu colour.

14 years agoMore git aliases.
Iain Patterson [Wed, 10 Jun 2009 10:09:04 +0000 (11:09 +0100)]
More git aliases.

Alias git amend to ``git commit --amend''.
Alias git alias to show aliases.

14 years agoAdded git graph alias.
Iain Patterson [Mon, 8 Jun 2009 09:18:36 +0000 (10:18 +0100)]
Added git graph alias.

Aliased to ``git log --graph --pretty=oneline''.

14 years agoFix hang when checking for .svn directory.
Iain Patterson [Mon, 1 Jun 2009 12:23:25 +0000 (13:23 +0100)]
Fix hang when checking for .svn directory.

If the parent directory is not executable __svn_dir() will not be able
to change to it and will hang.  Prevent this by returning failure if the
working directory isn't executable.

14 years agoComment for SVN prompt colour.
Iain Patterson [Wed, 27 May 2009 13:30:57 +0000 (14:30 +0100)]
Comment for SVN prompt colour.

14 years agoInclude SVN prompt.
Iain Patterson [Fri, 22 May 2009 15:59:34 +0000 (16:59 +0100)]
Include SVN prompt.

Allow toggling SVN prompt with prompt hide|show svn.
Specify depth for svn status with SVN_PS1_DEPTH.

14 years agoBack compatibility.
Iain Patterson [Thu, 21 May 2009 14:16:29 +0000 (15:16 +0100)]
Back compatibility.

Tab line functions were enclosed in a conditional block for version >=
"700" as they are not available before Vim 7.  Earlier versions still
parse them, however.  Vim 6 was reading the functions in, barfing on the
:for/:endfor blocks and spitting out an error about :return not inside a
function later on.

For Vim 6 the return WASN'T inside a function because the function
wasn't defined.

As a workaround all :for/:endfor blocks have been replaced with
:while/:endwhile blocks.  Vim 6 is now happy.

14 years agoTab bar.
Iain Patterson [Tue, 19 May 2009 13:22:20 +0000 (14:22 +0100)]
Tab bar.

14 years agoWindow tweaks for screen.
Iain Patterson [Thu, 14 May 2009 15:22:40 +0000 (16:22 +0100)]
Window tweaks for screen.

Bind digraph to ^K.
Bind fit to _.
Bind windowlist to = and colour the window list.