Textadept 12.0 alpha 2 #368
Replies: 11 comments 12 replies
-
May I ask why? The mix of shorter snippets in the Lua code and longer snippets in files is so convenient it would be a pity to loose that. One thing is having an LSP to assist in the creation of code and the other is have snippets with things that you do repetitively. And these things might be large and more convenient to do verbatim in a file than with escapes, etc in Lua code. |
Beta Was this translation helpful? Give feedback.
-
My thinking was that one can use *~/.textadept/init.lua* to import
snippets from an arbitrary directory structure.
|
Beta Was this translation helpful? Give feedback.
-
Fair enough. Here's a new wiki page linked from the wiki home page in
the snippets section:
https://github.com/orbitalquark/textadept/wiki/Load-snippets-in-directories
|
Beta Was this translation helpful? Give feedback.
-
Cool!Enviado desde mi iPhoneEl 5 mar 2023, a las 16:12, orbitalquark ***@***.***> escribió:
Fair enough. Here's a new wiki page linked from the wiki home page in
the snippets section:
https://github.com/orbitalquark/textadept/wiki/Load-snippets-in-directories
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you commented.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Please have a look at lsp over tcp: orbitalquark/textadept-lsp#12 |
Beta Was this translation helpful? Give feedback.
-
After your fix for #362 (comment) (I'm not really sure if it's the cause but I discovered it's this way since this 12.0 alpha 2), the editor will only start to highlight after I stopped typing. This caused an impression that the editor is slow as there is a delay. |
Beta Was this translation helpful? Give feedback.
-
Should the Open Recent... dialog be extended to support selecting of multiple files to open? On other text editors I know, they show the recently opened files directly via a sub menu with a "Clear recently opened files" entry at the end to clear recently opened files. TextAdept implemented it differently so there must be a reason to do so. I think it's natural to extend the Open Recent... dialog to support selecting of multiple files to open. Otherwise, it's just a weird decision imo. The Open Recent... dialog in it current form is just inconvenient to work with. Btw, please add "Clear recently opened files" to the Open Recent... dialog. Thank you. |
Beta Was this translation helpful? Give feedback.
-
I just tried to build TextAdept from source. Given the amount of the dependencies, I don't think adding https://github.com/itay-grudev/SingleApplication to support single instance on Qt is something unreasonable. Please reconsider: #361 |
Beta Was this translation helpful? Give feedback.
-
Btw, you always said you can't implement theming for TextAdept (I mean the TextAdept app, not the editor color scheme you called theme). You always said it's because the limitations of GTK and Qt so you can't do anything with it. The fact is, there is no such limitations. Both GTK and Qt support style sheets: https://docs.gtk.org/gtk3/css-overview.html https://doc.qt.io/qt-5/stylesheet-customizing.html An example of a Qt app with out of the box dark theme: https://github.com/royqh1979/RedPanda-CPP |
Beta Was this translation helpful? Give feedback.
-
Please consider re-adding Allowing the height to be changed enables the command entry buffer to be reused for many other purposes. For instance prior to TA 12 I was sending run output to it, so it functioned as a transient pop-up output buffer.
The command entry is well suited to display information rapidly on demand, like code metrics, git status or api docs with syntax-highlighting and a larger font size than is practical via a call tip. I don't think I'm alone in repurposing the command entry, the Textredux module has a method for attaching a reduxbuffer to the command entry https://github.com/rgieseke/textredux/blob/b7900c77e1604ed0f0c3a4b9c0b0776e89bb7b2a/core/buffer.lua#L244 With the command entry limited to a height of one line in TA 12 alpha 2, all of the above becomes impractical, because the user either has to view the content one line at a time, by repeatedly pressing the down arrow; or use the mouse to make the view larger on each and every use. Thanks for creating Textadept, I appreciate all the time you've put into it. I've been a user since version 9.2, and have purchased multiple versions of the quick reference over the years. |
Beta Was this translation helpful? Give feedback.
-
Greatly appreciated :-)
…On Fri, 7 Apr 2023 at 00:51, orbitalquark ***@***.***> wrote:
Very well. textadept.snippets.path has been restored: bdcaf03
<bdcaf03>
—
Reply to this email directly, view it on GitHub
<#368 (reply in thread)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAZKU4CNHHGO43AI6KK4WALW75CHBANCNFSM6AAAAAAVMVYC2A>
.
You are receiving this because you commented.Message ID:
***@***.***>
--
Fragen sind nicht da, um beantwortet zu werden,
Fragen sind da um gestellt zu werden
Georg Kreisler
Headaches with a Juju log:
unit-basic-16: 09:17:36 WARNING juju.worker.uniter.operation we should run
a leader-deposed hook here, but we can't yet
|
Beta Was this translation helpful? Give feedback.
-
Textadept 12.0 alpha 2 is released from https://github.com/orbitalquark/textadept/releases/tag/textadept_12.0_alpha_2
Like the previous alpha, this new alpha also contains major changes, such as:
Please see the migration guide for migrating from Textadept 11 to 12. You can read more about the above changes here.
Bugfixes:
textadept.editing.autocomplete()
should returnfalse
if no completions are displayed.view:vertical_center_caret()
.events.CHAR_ADDED
.Changes:
textadept.editing.api_files
andtextadept.editing.show_documentation()
.lexer.names()
.textadept.editing.transpose_chars()
.textadept.editing.typeover_chars
withtypeover_auto_paired
.textadept.snippets.cancel_current()
tocancel()
.textadept.snippets.path
.events.BUFFER_DELETED
.-L
and--lua
command line option for running Textadept as a standalone Lua interpreter._SCINTILLA.next_*
to_SCINTILLA.new_*
.textadept.run.run_in_background
applies even if the output buffer is not open.ui.command_entry.append_history()
andui.command_entry.height
.buffer.property_int
(notlexer.property_int
).Beta Was this translation helpful? Give feedback.
All reactions