Vitaliy Dovgan
Vitaliy Dovgan
Included in NppExec v0.6.1: the ability to remove ANSI escape sequences (npe_console e1).
The technique described in the Manual "4.6.11. Clone current document to new editor pane" works for me. It uses `SCI_SETSEL` and `SCI_SETFIRSTVISIBLELINE` in the same way as you do. As...
Most likely it is related to the facts mentioned in NppExec's Manual, section 4.5. Console output redirection: ``` NppExec uses pipes to redirect child process'es output to NppExec's Console window...
When I'll have time, I'll experiment with the approach described here: https://www.codeproject.com/Articles/16163/Real-Time-Console-Output-Redirection especially with the updated version that ia available here: https://github.com/buck54321/PipeStuffer NppExec can't use that implementation "as is" because...
Please find it explained here: https://github.com/d0vgan/nppexec/issues/42
I hardly recalled that the blank item in Notepad++'s Shortcut Mapper for NppExec has a special purpose. NppExec's Advanced Options has a check-box "Place to the Macros submenu". When it...
It's an interesting question. I always treated `^` and `$` as "anchors" that require additional characters for actual matching. That's why `^(.)` should always work with any regexp engine since...
Looking into Scintilla's sources, there is a file "Scintilla\include\BoostRegexSearch.h" that contains the following constants: ``` #define SCFIND_REGEXP_EMPTYMATCH_MASK 0xE0000000 #define SCFIND_REGEXP_EMPTYMATCH_NONE 0x00000000 #define SCFIND_REGEXP_EMPTYMATCH_NOTAFTERMATCH 0x20000000 #define SCFIND_REGEXP_EMPTYMATCH_ALL 0x40000000 #define SCFIND_REGEXP_EMPTYMATCH_ALLOWATSTART 0x80000000...
The latest commit to the [develop](https://github.com/d0vgan/nppexec/tree/develop) branch contains the required changes plus the examples for `sci_find` and `sci_replace`. Note: don't forget to update the "BaseDef.h" under the "NppExec\NppExec" folder since...
Fixed in NppExec v0.8.3: https://github.com/d0vgan/nppexec/releases/tag/v083