Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Document -sep flag |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
6a4c3347f129d1942e25d936b393c7ab |
User & Date: | peter 2015-03-17 23:39:03.339 |
Context
2015-03-17
| ||
23:39 | Use hglist extension for better hg dir diff check-in: 6fef3f1b96 user: peter tags: trunk | |
23:39 | Document -sep flag check-in: 6a4c3347f1 user: peter tags: trunk | |
2015-03-16
| ||
21:45 | Find namespaces in debug proc editor. Removed some unused code. check-in: 946b362770 user: peter tags: trunk | |
Changes
Changes to Changes.
1 2 3 4 5 6 7 | 2015-03-16 Added csv plugin. Pass ::argv to plugins. 2015-03-15 Extended Mercurial support to commit, revert, log and directory diff. | > > > > | 1 2 3 4 5 6 7 8 9 10 11 | 2015-03-17 Added command line flag "-sep" to set a separator for table-like files like CSV. 2015-03-16 Added csv plugin. Pass ::argv to plugins. 2015-03-15 Extended Mercurial support to commit, revert, log and directory diff. |
︙ | ︙ |
Changes to src/eskil.tcl.
︙ | ︙ | |||
33 34 35 36 37 38 39 | # Stop Tk from meddling with the command line by copying it first. set ::eskil(argv) $::argv set ::eskil(argc) $::argc set ::argv {} set ::argc 0 set ::eskil(debug) 0 | | | 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | # Stop Tk from meddling with the command line by copying it first. set ::eskil(argv) $::argv set ::eskil(argc) $::argc set ::argv {} set ::argc 0 set ::eskil(debug) 0 set ::eskil(diffver) "Version 2.7+ 2015-03-17" set ::eskil(thisScript) [file join [pwd] [info script]] namespace import tcl::mathop::+ namespace import tcl::mathop::- namespace import tcl::mathop::* namespace import tcl::mathop::/ |
︙ | ︙ | |||
3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 | -clip : Start in clip diff mode. Ignores other args. -patch : View patch file. - : Read patch file from standard input, to allow pipes. -review : View revision control tree as a patch. -context <n>: Show only differences, with <n> lines of context. -foreach : Open one diff window per file listed. -close : Close windows with no changes. -noparse : Eskil can perform analysis of changed blocks to -line : improve display. See online help for details. -smallblock : The default. Do block analysis on small blocks. -block : Full block analysis. This can be slow if there are large change blocks. | > | 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 | -clip : Start in clip diff mode. Ignores other args. -patch : View patch file. - : Read patch file from standard input, to allow pipes. -review : View revision control tree as a patch. -context <n>: Show only differences, with <n> lines of context. -foreach : Open one diff window per file listed. -close : Close windows with no changes. -sep <c> : See char <c> as separator between columns in files. -noparse : Eskil can perform analysis of changed blocks to -line : improve display. See online help for details. -smallblock : The default. Do block analysis on small blocks. -block : Full block analysis. This can be slow if there are large change blocks. |
︙ | ︙ | |||
3915 3916 3917 3918 3919 3920 3921 | set allOpts { -w --help -help -b -noignore -i -nocase -nodigit -nokeyword -prefix -noparse -line -smallblock -block -char -word -limit -nodiff -dir -clip -patch -browse -conflict -print -noempty -pivot -printHeaderSize -printCharsPerLine -printPaper -printColorChange -printColorOld -printColorNew | | | 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 | set allOpts { -w --help -help -b -noignore -i -nocase -nodigit -nokeyword -prefix -noparse -line -smallblock -block -char -word -limit -nodiff -dir -clip -patch -browse -conflict -print -noempty -pivot -printHeaderSize -printCharsPerLine -printPaper -printColorChange -printColorOld -printColorNew -printFont -sep -server -o -a -fine -r -context -cvs -svn -review -foreach -preprocess -preprocessleft -preprocessright -close -nonewline -plugin -plugininfo -plugindump -pluginlist -nocdiff } # If the first option is "--query", use it to ask about options. |
︙ | ︙ |