[https://aplsimple.github.io/en/tcl/alited/%|%alited v1.0.6%|%] stands for "a lite editor". The main features of ''alited'' are: * structured code * easy access to the code * born for Tcl/Tk development only It satisfies most requirements of [Tcl Editors], adding its own features. Edited by ''alited'' are Tcl/Tk files. The C/C++ code is another target of ''alited'', still for ''Tcl/Tk development only'' all the same. ''alited'' facilitates the development and the maintenance of Tcl/Tk code, particularly because of the unit tree being a sort of documentation. ''alited'' is suspected of being very good with large [Tcl/Tk] projects, i.e. when, in one session, you deal with 30-40-50... [Tcl/Tk] scripts, to say nothing of others. It's quick at starting. It's quick at switching projects. It's quick at organizing [Tcl/Tk] code. It's quick at navigating [Tcl/Tk] code. It's quick at searching [Tcl/Tk] code. It's quick at writing [Tcl/Tk] code. It's quick at testing [Tcl/Tk] code. It's quick at saving [Tcl/Tk] code. It's quick at maintaining [Tcl/Tk] code. Briefly, alited is totally quick, being at that ''a pure [Tcl/Tk] application.'' Links: * [https://aplsimple.github.io/en/tcl/alited%|%Description%|%] * [https://aplsimple.github.io/en/tcl/alited/alited.html%|%Reference%|%] * Download from: ** [https://chiselapp.com/user/aplsimple/repository/alited/download%|%chiselapp%|%] ** [https://github.com/aplsimple/alited%|%github%|%] For a quick acquaintance of ''alited'', a few of demo videos are available: * [https://github.com/aplsimple/alited/releases/download/1.Start_alited-1.0.6/1.Start_alited-1.0.6.mp4%|%1. First start%|%] * [https://github.com/aplsimple/alited/releases/download/2.Units_alited-1.0.6/2.Units_alited-1.0.6.mp4%|%2. Units%|%] (main point of ''alited'') * [https://github.com/aplsimple/alited/releases/download/3.Projects_alited-1.0.6/3.Projects_alited-1.0.6.mp4%|%3. Projects%|%] * [https://github.com/aplsimple/alited/releases/download/4.Find_alited-1.0.6/4.Find_alited-1.0.6.mp4%|%4. Find and replace%|%] * [https://github.com/aplsimple/alited/releases/download/5.Tools_alited-1.0.6/5.Tools_alited-1.0.6.mp4%|%5. Tools%|%] * [https://github.com/aplsimple/alited/releases/download/6.Themes_alited-1.0.6/6.Themes_alited-1.0.6.mp4%|%6. Themes%|%] Below is a screenshot of ''alited'', just to glance at it: [https://aplsimple.github.io/en/tcl/alited/files/alited-en.png%|%alited-en%|%] ... and its localized and themed variant: [https://aplsimple.github.io/en/tcl/alited/files/alited-ru.png%|%alited-ru%|%] ... and its themed variant on Windows 10: [https://aplsimple.github.io/en/tcl/alited/files/alited-win10.png%|%alited-win10%|%] <> '''tma 2021-12-30''': Under Windows 'alited' creates a directory '.config' in the users home directory with every start. Application config files should be in APPDATA=C:\Users\''''\AppData\Roaming\''''. ---- [HE] 2021-12-30: Alited looks promising but directly after starting I found one or better, two issues which let me directly stop my experiments. Opening a ticket on github is only possible for registered users so this is not a possible way for me to inform the author. Therefore, I added a Discussion section to provide what I found. Alited opens a server socket on 127.0.0.1:51837 by using the package comm. This is not possible to change without changing the code. Neither the used port nor that the port is opened for listening. This is an issue in a couple of cases: * The port is used for some reason other than alited. Alited will never show itself on the GUI. Moreover, there is no warning what went wrong and a look into the task list shows that alited is still running.<
>That means it hangs forever. Or, at least for a couple of minutes before I killed these processes.<
>Reason is a missing timeout when using "::comm::comm send $comm_port" to test if the task using the port is a alited instance. There is no guarantee that a listener port is answering the connection attempt. And then alited hangs. * It is not possible to use two instances of alited in parallel. For example, I'm often working on different programs at the same time using different virtual work spaces. In such cases I want different instances.<
>Reason is that the used port is not configurable. We can use more than one configuration file but, they use always the same port. * This open port is a security thread because it allows other users on the same machine to send commands to a running alited instance. I tried: Two user foo and foo1. foo starts alited. foo1 starts tclsh and executes the following: === package require comm comm::comm send 51837 exec touch ~/securityIssue.txt comm::comm send 51837 exit exit === This created a new text file and than closed the alited instance of foo. To make it clear, this allows everything to be executed by foo1 in context of foo what exec accepts. So you can destroy all the data foo can reach. I don't understand the need to use comm with -listener 1 for alited. The documentation does not describe a use case for it. At least I doesn't find it. To remote control an application to be tested, the listener mode of comm is not needed in alited. To check for another running instance of the user also can be done in a different way. For example, assuming a local installation of the user with a lock file. Perhaps one can explain the reason for using comm in listener mode? ---- '''[aplsimple] - 2021-12-31 01:55:17''' Happy New Year for all of you! Hi tma, Hopefully, in the upcoming 2022 Bill (or anyone who'd be after him) will not change his mind and the Roaming directory will not turn to some RoamingNeverSayNever. alited might finely do without the starting question on .config, still it's one of its nice features - to have as much configuration directoties as you need. Somewhere in the docs I mention this, it seems to be First start section. Hi Holger, Why don't register in Github? Making so nice analysis on comm and two instances of alited - and so averting from Github? The Git and Github aren't wild beasts, they don't bite:) Still the issues of Github would allow guys to get the troubles immediately on the mail, the feature alas they have not with Wiki's Comments and Chiselapp's Tickets. That said, alited is more about Tcl/Tk development than those entourage things. The alited is better than Geany and TKE. Imho much better. You might see it in its demo of units https://github.com/aplsimple/alited/releases/download/2.Units_alited-1.0.6/2.Units_alited-1.0.6.mp4 not to say of other sides, be them dark or lite. <> GUI | Editor utility