summaryrefslogtreecommitdiff
path: root/plugins/svn/svn.plugin.zsh
AgeCommit message (Collapse)Author
2016-09-29Clean up and refactor code in svn pluginMarc Cornellà
2016-09-29Add localization workaround to svn pluginChristian Ferbar
2015-09-11svn plugin: urldecode repo infoAndrew Janke
The repo location reported by `svn` is a URL. If you don't decode it before using it a prompt, the `%` sequences will be misinterpreted by prompt expansion and give screwy results. Fixes #2233
2014-11-16ignore any grep aliases that might be definedDanielFGray
2014-11-06Change all pwd calls for $PWD variableMarc Cornellà
This avoids spawning additional processes as $PWD **always** contains the current working directory.
2014-03-14add option to show dirty status of current dirAndrew vonderLuft
2012-12-30added support for subversion 1.7 for svn pluginArtie Kh
2012-12-01Merge pull request #1435 from Drarok/fix-svnRobby Russell
Fix backwards svn "dirty" state detection
2012-12-01Merge pull request #1400 from tresni/patch-2Robby Russell
Updated svn.plugin.zsh to behave more like lib/git.zsh
2012-11-27Fix the backwards svn status, and add comments explaining which way grep ↵Drarok Ithaqua
does things.
2012-11-27Whitespace cleanup.Drarok Ithaqua
2012-11-13UntabifyCaleb Epstein
2012-11-12Handle metachars in svn status output using grep -qCaleb Epstein
2012-11-08Update plugins/svn/svn.plugin.zshBrian Hartvigsen
Behave more like lib/git.zsh. Set `SVN_SHOW_BRANCH="true"` to display branch/tag or trunk instead of just repo name. Falls back to repo name if branch information is not available. Idea and awk call from revans/bash-it/themes/base.theme.bash
2012-05-03Don't drop everything after a trailing slash, as this breaks standard svn ↵Mat Gadd
branches: ^/branches/featurename ^/releases/Release-vx.y ^/trunk
2011-09-23This is the correct way to check the return valueJames Moore
2011-09-23This needs to explicitly check the return valueJames Moore
2011-07-25The original SVN pluging would mark a folder as dirty if there was anAndrew Smith
svn:external set and the output of 'svn status' returned the check for the external. E.g. $ svn st X Application Performing status on external item at 'Application' Shouldn't be marked as being dirty. By grepping for only the valid output for what should be class as dirty, it won't return false positives.
2011-07-25Replace a duplicated test to see if we're in an SVN folder with a call to ↵Andrew Smith
the 'in_svn' function.
2011-06-04Fix typos in the svn plugin that would cause calls to 'svn' when not in an ↵Matt Doran
svn working copy.
2011-01-10Added svn info in prompt with plugin.Robin Ramael
If the svn plugin is used, svn info (repo name and wether the repo is dirty) is displayed in the prompt like with git. Just lke with git, the colors can be manipulated with variables (see awesomepanda theme for example).