aboutsummaryrefslogtreecommitdiff
path: root/vis-complete
AgeCommit message (Collapse)AuthorFilesLines
2016-10-05vis-complete - Use different delimiter in sed commandRichard Burke1-1/+1
This is to avoid issues when handling file paths
2016-09-25vis: move file name and word completion logic to a shell scriptMarc André Tanner1-0/+35
The shell script should be reviewed for quoting issues, currently it allows command injections as in: $ vis-complete "'; rm -f some-file; echo " However it is intended for interactive usage and from within vis it is only ever called with a valid completion prefix. The file name completion logic now supports nested directories. Close #347