Compare commits
No commits in common. "2dd866d8c499f52fe28920e19df854b96f35fc5a" and "f4ef40a5e7a8f97fe5673c219bc02ab6ed7db5b2" have entirely different histories.
2dd866d8c4
...
f4ef40a5e7
36
README.md
36
README.md
@ -1,39 +1,27 @@
|
|||||||
# About
|
ABOUT
|
||||||
|
|
||||||
ProjMan (aka "Tcl/Tk Project Manager") is a editor for programming in TCL/Tk (and other language).
|
ProjMan (aka "Tcl/Tk Project Manager") is a editor for programming in TCL/Tk (and other language).
|
||||||
It includes a file manager, a source editor with syntax highlighting and code navigation, a context-sensitive help system, Git support, and much more.
|
It includes a file manager, a source editor with syntax highlighting and procedure navigation, a context-sensitive
|
||||||
Working an Linux and Windows.
|
help system, and much more.
|
||||||
|
Working an Linux.
|
||||||
|
|
||||||
# Support languages
|
REQUIREMENTS
|
||||||
|
|
||||||
Highlightning and source code navigation:
|
|
||||||
|
|
||||||
* Tcl/Tk
|
|
||||||
* GO
|
|
||||||
* Perl
|
|
||||||
* Python
|
|
||||||
* Ruby
|
|
||||||
* Shell (BASH)
|
|
||||||
* Markdown
|
|
||||||
* YAML (Ansible support)
|
|
||||||
|
|
||||||
Highlightning:
|
|
||||||
|
|
||||||
* HTML
|
|
||||||
* XML
|
|
||||||
|
|
||||||
# Requirements
|
|
||||||
|
|
||||||
For UNIX-like OS
|
For UNIX-like OS
|
||||||
Tcl/Tk >= 8.6 http://tcl.tk
|
Tcl/Tk >= 8.6 http://tcl.tk
|
||||||
tcllib, tklib
|
tcllib, tklib
|
||||||
|
|
||||||
# Credits
|
CREDITS
|
||||||
|
|
||||||
Sergey Kalinin - author
|
|
||||||
svk@nuk-svk.ru
|
svk@nuk-svk.ru
|
||||||
http://nuk-svk.ru
|
http://nuk-svk.ru
|
||||||
|
|
||||||
Laurent Riesterer - VisualREGEXP and TkDIFF+ parts
|
Laurent Riesterer - VisualREGEXP and TkDIFF+ parts
|
||||||
laurent.riesterer@free.fr
|
laurent.riesterer@free.fr
|
||||||
http://laurent.riesterer.free.fr
|
http://laurent.riesterer.free.fr
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -107,14 +107,4 @@ namespace eval Highlight {} {
|
|||||||
ctext::addHighlightClassForRegexp $txt comments #666666 {(#|//)[^\n\r]*}
|
ctext::addHighlightClassForRegexp $txt comments #666666 {(#|//)[^\n\r]*}
|
||||||
ctext::addHighlightClassForRegexp $txt namespaces #4f64ff {::}
|
ctext::addHighlightClassForRegexp $txt namespaces #4f64ff {::}
|
||||||
}
|
}
|
||||||
proc MD {txt} {
|
|
||||||
ctext::addHighlightClassForRegexp $txt lists #4471ca {(\*|-|\+)+}
|
|
||||||
ctext::addHighlightClassForSpecialChars $txt brackets green {[]{}()}
|
|
||||||
ctext::addHighlightClassForRegexp $txt url #19a2a6 {(http|http|ftp|ssh)(://)(\w|\.|-)+?}
|
|
||||||
ctext::addHighlightClassForRegexp $txt email #467a7b {(\w|\.|-)+?(@)(\w|\.|-)+?($|\s)}
|
|
||||||
ctext::addHighlightClassForRegexp $txt qoute #b84a0c {("|'|`).*?("|'|`)}
|
|
||||||
ctext::addHighlightClassForRegexp $txt sharp #975db4 {(#+?)\s(.*?)$}
|
|
||||||
ctext::addHighlightClassForRegexp $txt quotedtext #a9b36c {^(\s*?)(>+).+?$}
|
|
||||||
ctext::addHighlightClassForRegexp $txt italictext #dff74e {((_|\*)+?)(.+?)((_|\*)+?)}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@ -48,12 +48,4 @@ dict set lexers YML procRegexpCommand {regexp -nocase -all -- {^\s*?- (name):\s(
|
|||||||
dict set lexers YML varRegexpCommand {regexp -nocase -all -- {^(\s*?)([a-zA-Z0-9\-_$]+):\s+(.+?)(\s*$)} $line match indent varName varValue lineEnd}
|
dict set lexers YML varRegexpCommand {regexp -nocase -all -- {^(\s*?)([a-zA-Z0-9\-_$]+):\s+(.+?)(\s*$)} $line match indent varName varValue lineEnd}
|
||||||
dict set lexers YML varRegexpCommandMultiline {regexp -all -line -- {^(\s*)(set_fact|vars):$} $line match indent keyWord}
|
dict set lexers YML varRegexpCommandMultiline {regexp -all -line -- {^(\s*)(set_fact|vars):$} $line match indent keyWord}
|
||||||
|
|
||||||
#--------------------------------------------------
|
|
||||||
# MD (markdown)
|
|
||||||
dict set lexers MD tabSize 2
|
|
||||||
dict set lexers MD procFindString {(#+?)\s*?PROCNAME}
|
|
||||||
dict set lexers MD procRegexpCommand {regexp -nocase -all -- {^\s*?(#+?)\s(.+?)$} $line match keyWord procName}
|
|
||||||
# dict set lexers YML varRegexpCommandMultiline {regexp -all -line -- {^(\s*)(set_fact|vars):$} $line match indent keyWord}
|
|
||||||
|
|
||||||
# -------------------------------------------------
|
|
||||||
dict set lexers ALL varDirectory {variables vars group_vars host_vars defaults}
|
dict set lexers ALL varDirectory {variables vars group_vars host_vars defaults}
|
||||||
|
@ -10,7 +10,7 @@ exec wish "$0" -- "$@"
|
|||||||
######################################################
|
######################################################
|
||||||
# Version: 2.0.0
|
# Version: 2.0.0
|
||||||
# Release: alpha
|
# Release: alpha
|
||||||
# Build: 25112022110647
|
# Build: 25112022080815
|
||||||
######################################################
|
######################################################
|
||||||
|
|
||||||
# определим текущую версию, релиз и т.д.
|
# определим текущую версию, релиз и т.д.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user