Don Ho
ee74fe5879
Merge branch 'molsonkiko-fix_shortcut_mapper_scintilla_shortcut'
9 months ago
Don Ho
27156bdf3c
Merge branch 'fix_shortcut_mapper_scintilla_shortcut' of https://github.com/molsonkiko/notepad-plus-plus into molsonkiko-fix_shortcut_mapper_scintilla_shortcut
9 months ago
GabrielFrigo
b30e2755c8
Update BATCH (Remove chcp and choice)
...
Close #14715
9 months ago
Don Ho
d83d4c9239
Fix plugins not recieving some Scintilla notification types regression
...
Remove the restriction for Scintilla notification types for plugins.
Ref: https://community.notepad-plus-plus.org/topic/25497/notepad-release-8-6-4/9
9 months ago
Don Ho
9a6614ea98
Enhance NPPN_GLOBALMODIFIED notification
...
The commit enhances 49e6957d48
9 months ago
Don Ho
49e6957d48
Fix Replace All action not notifying plugins of modification regression
...
Add NPPN_GLOBALMODIFIED to notify plugins that the current document is just modified by Replace All action.
//scnNotification->nmhdr.code = NPPN_GLOBALMODIFIED;
//scnNotification->nmhdr.hwndFrom = BufferID;
//scnNotification->nmhdr.idFrom = 0; // preserved for the future use, must be zero
For solving the performance issue (from v8.6.4), Notepad++ doesn't trigger SCN_MODIFIED & other Scitilla notifications during Replace All action anymore.
Plugin devs should monitor NPPN_GLOBALMODIFIED instead. This notification is implemented in Notepad++ v8.6.5.
Ref: https://github.com/notepad-plus-plus/notepad-plus-plus/pull/14685#issuecomment-1955229867
Fix #14767 , close #14768
9 months ago
Don Ho
120fc5d726
Notepad++ v8.6.4 release
9 months ago
Don Ho
827b08f6ff
Fix regression that the view cannot be activated by mouse clicking
...
SCI_SETCOMMANDEVENTS cannot be set to false, because SCEN_SETFOCUS is being used by Notepad++
The regression was introduced by commit: 044296eea1
Fix https://community.notepad-plus-plus.org/topic/25490/notepad-release-8-6-3/7?_=1708380779619
9 months ago
Don Ho
1491efd95e
Add a new great refactoring
9 months ago
Don Ho
5110069841
Notepad++ v8.6.3 release
9 months ago
Don Ho
250dfe0f8b
Fix new editing dialog not in dark mode
...
Fix https://community.notepad-plus-plus.org/topic/25478/notepad-v8-6-3-rc-2/3?_=1708095675232
10 months ago
molsonkiko
840c4e5854
use ScintillaKeyMap::toString() to get all shortcuts
...
simplifies code, also matches "or" in a list of multiple shortcuts.
10 months ago
Don Ho
f2d66170fc
Restore multi-editing option on GUI
...
Make also Column To Multi-editing optional on GUI and cancel the usage of noColumnToMultiSelect.xml file.
For users who have added "noColumnToMultiSelect.xml" for disabling "Column To Multi-editing" feature,
please go to "Editing 2" section of Preferences to disable this feature.
Ref: https://community.notepad-plus-plus.org/topic/25364/notepad-v8-6-2-release/11?_=1707952609907
Ref: https://github.com/notepad-plus-plus/notepad-plus-plus/issues/14611#issuecomment-1937487607
Fix #14645 , close #14734
10 months ago
Karlo-F
75b239cf8a
[xml] Update croatian.xml to v8.6.3
...
Close #14726
10 months ago
xomx
63d0f88b0a
[xml] Update czech.xml to v8.6.3
...
Close #14728
10 months ago
molsonkiko
36793b5164
Enable shortcut mapper to filter keycombos for scintilla commands
...
Previously the shortcut mapper filtered the keycombo
for every other type of command, but not scintilla commands.
10 months ago
Gustavo5634
978118dc0e
Add latest ES/JS keywords for auto-completion
...
Fix #14705 , close #14711
10 months ago
Piotr Kostrzewski
a670b26a7c
Update polish.xml to 8.6.3
...
Close #14675
10 months ago
Juan
5f95df0ae4
[xml]Update galician v.8.6.3.xml
...
Close #14713
10 months ago
Juan
eabd620507
[xml]Update spanish v.8.6.3.xml
...
Close #14712
10 months ago
DARK_GEMS
346ed36c01
Add html 5 style code in css.xml for auto-completion
...
Close #14698
10 months ago
~GOLEM~
be4584832f
[xml] Update russian.xml v8.6.3
...
Close #14678
10 months ago
Andrei Miloiu
2ef8d147ee
[xml] Update romanian.xml
...
Close #14598
10 months ago
Blackspirits
632dcaa470
Update portuguese.xml
...
Close #14669
10 months ago
Patriccollu
a0bd2f8816
[xml] Update Corsican translation for Notepad++ 8.6.3
...
Close #14677
10 months ago
Marcellomco
b4a2040b77
[XML] Update brazilian_portuguese.xml
...
Added translation for "Update localization files"
Close #14679
10 months ago
schnurlos
7beb15d56c
[xml] Update german.xml
...
Following c6e433f70b
Close #14680
10 months ago
kubalav
59b9257cb0
[xml] Update Slovak translation
...
Close #14682
10 months ago
rddim
6875e2673f
[xml] Update Bulgarian localization
...
Close #14686
10 months ago
yasmise
04b595f095
[xml] Update japanese.xml
...
Add translation text for this commit:
* Update localization files (c6e433f
)
Close #14690
10 months ago
Don Ho
087430f8f1
Fix regression of NPPM_RELOADFILE
...
Regression is introduced by:
bb278b26fc
Fix #14693 , close #14708
10 months ago
Don Ho
76cfc5945e
Fix loosing all open files after restarting as Admin to save a file
...
While saving a file needs the admin privilege, and if "Always In Multi-Instance Mode" option is activated, the current Notepad++ instance will be closed and a new instance with admin privilege contains no file is launched - it makes user confused because there are nothing to be edited and saved.
This commit fixes the issue by keeping the 1st instance opened, and launching the 2nd instance (with admin privilege) which contains the file in question - so user can modify it and save it.
The new behaviour (of this commit) not only fixes the issue, but also makes more sense, since it's "Always In Multi-Instance Mode". Note that the same behaviour happens if the session & periodical backup feature is disabled.
Fix #14694 , close #14701
10 months ago
vlakoff
c927ee8ce5
Add .mjs extension to the "web script" file associations
...
close #14689
10 months ago
Don Ho
044296eea1
Fix Replace All crash & performance issue
...
Fix #14630 , close #14685
10 months ago
Don Ho
0d05dae4ba
Add more unit tests for Function List of Python
10 months ago
Дим Щ
e600c35ad2
Enhance Function List for Python
...
Support for async def and colons in argument list
Fix #13908 , close #14628
10 months ago
Don Ho
c6e433f70b
Update localization files
10 months ago
Don HO
5e6df25942
Update README.md
...
Add build status
10 months ago
anatoly77g
91074da46d
Fix macro recording twice for some commands
...
When recording a keyboard macro, some commands are added to the macro twice.
When later playing back the macro, they happen twice, which leads to incorrect edits.
Fixed commands:
* EDIT_CUT (Cut)
* EDIT_COPY (Copy)
* IDM_EDIT_LINE_UP (Move Up Current Line)
* IDM_EDIT_LINE_DOWN (Move Down Current Line)
Not fixed: issue 13722:
SEARCH_GOTOMATCHINGBRACE (Go to Matching Brace)
Fix #5217 , fix #14634 , close #14613
10 months ago
Don Ho
f09b653d19
Fix calltip crash due to the division by zero
...
Fix #14664 , close #14667
10 months ago
Don HO
9cec6aff3b
Update CONTRIBUTING.md
10 months ago
Don HO
85af8d566d
Update CONTRIBUTING.md
...
Add info for PR regarding Function List parser.
10 months ago
Compaszer
bf65ba5329
Added php 8.3 functions to syntax highlighting and autocomplete files
...
Fix #14635 , close #14636
10 months ago
DARK_GEMS
ec29bc101c
Update css.xml
...
Some css properties added.
Close #14666
10 months ago
Alan Kilborn
cb8165b161
Fix "Open File" command not working with TAB preceded
...
Fix #14543 , close #14654
10 months ago
Don Ho
9e7f1e514c
Make copy/cut line while no selection optional
...
With this commit, there's the same issue in both JsonTools & NavigateTo (in C#), described here:
https://community.notepad-plus-plus.org/topic/25315/notepad-v8-6-1-release/2?_=1706795482129
To reproduce:
1. Uncheck "Enable Copy/Cut Line without selection" checkbox in Editing section of Preferences.
2. Make sure there's no selection in the current editor
3. Launch "Open JSON tree viewer", and try to Cut "@" symbol on the top left text field with Ctrl-X
To remedy such problem, the plugin should call NPPM_MODELESSDIALOG with MODELESSDIALOGADD on the handle (HWND) of modeless dialog, just after the dialog creation.
(https://github.com/notepad-plus-plus/notepad-plus-plus/blob/master/PowerEditor/src/MISC/PluginsManager/Notepad_plus_msgs.h#L93 )
With the registration of dialog handle, Notepad++ will pass all events which belongs to dialog's controls to the registered dialog.
Both source code of JsonTools & NavigateTo have been examinated, NPPM_MODELESSDIALOG which should be used has not been called.
Not sure it's the case of all the plugin in C#, it's not the issue for the C/C++ plugins anyway, because the dockable modeless dialog (inherited from StaticDialog) is registered after its creation:
https://github.com/notepad-plus-plus/notepad-plus-plus/blob/master/PowerEditor/src/WinControls/StaticDialog/StaticDialog.cpp#L257
Fix #14638 , close #14660
10 months ago
Don HO
f431a37967
Update SUPPORTED_SYSTEM.md
10 months ago
Don Ho
c0eaf544a6
Add "Plugin Communication" reference
...
and update copyright year for plugin header files.
10 months ago
Don Ho
bb278b26fc
Enhance API description in comment
...
Close #14587
10 months ago
Christian Grasser
50a6cf2981
Modified Notepad++ version to "Notepad++ GH_BUILD" for CI artifact
...
In order to avoid confusion NOTEPAD_PLUS_VERSION is modified to "Notepad++ GH_BUILD" for GitHub CI artifacts.
Close #14625
10 months ago