Don HO
a2264e5b36
Restore Folder as Workspace's latest selected item of last session on start up
...
Fix #8353
2020-09-19 00:36:03 +02:00
Don HO
009563f52d
Update 2 localization files
2020-09-10 19:50:37 +02:00
Don HO
6d939d3e79
Add some languages for -L flag of command line
...
irish.xml, aranese.xml, extremaduran.xml, kabyle.xml, ligurian.xml and samogitian.xml are added for -L flag.
Fix #8347
2020-09-09 23:14:59 +02:00
Udo Hoffmann
84430809df
Add back hovered blue underlined URLs
...
Fix #8654 , close #8713
2020-08-23 12:28:14 +02:00
Udo Hoffmann
0fe971ca88
Add keyboard shortcuts for switching to panels
...
Close #8719 , close #8720
2020-08-19 02:22:43 +02:00
Scott Sumner
209ccb97ec
Add confirmation preference for Replace All in All Opened Documents operation
...
Close #8527 , close #8708
2020-08-16 16:15:21 +02:00
Udo Hoffmann
ddd2e5fd23
Improve some ambiguous commands naming in Shortcut Mapper
...
Separate command shortcut names and menu names.
Fix #8689 , close #8690
2020-08-15 18:44:12 +02:00
Scott Sumner
3a2edb99c4
Add word-wrap option to find-results context menu
...
Close #8624 , close #8681
2020-08-13 17:17:22 +02:00
Scott Sumner
7c28a120d9
Improve single-line indentation and dedentation functionality
...
Fix #5721 , close #8623
2020-08-13 13:08:43 +02:00
Scott Sumner
33f042932f
Make (Find) dlgAlwaysVisible a true Preference setting
...
Close #7908 , close #8651
2020-08-12 23:50:47 +02:00
Scott Sumner
ca3d514722
Add ability to sort lines randomly
...
Close #8682 , close #8683
2020-08-09 04:19:08 +02:00
Scott Sumner
f1b059414b
Add an option to prevent right-click from canceling selection
...
Fix #8563 , close #8564
2020-08-06 20:11:10 +02:00
Scott Sumner
84ea510b67
Add 'Searching' subpage to Preferences for Find-Replace-Mark settings
...
Fix #8131 , close #8541
2020-07-30 02:35:26 +02:00
Scott Sumner
202f6de4e1
Allow 'Remove Consecutive Duplicate Lines' command to be mapped via Shortcut Mapper
...
Fix #8546 , close #8547
2020-07-21 18:38:41 +02:00
Udo Hoffmann
0a821b60e2
Add an option to improve rendering special Unicode characters
...
... by using Scintilla's DirectWrite technology.
It allows ligature support if the font needed (for exemple "Fira Code") is installed.
Fix #2287 , close #8326
Fix #442 , fix #675 , fix #813 , fix #870 , fix #1621 , fix #3458 , fix #4056 , fix #4086 , fix #4490 , fix #8305
2020-06-12 19:16:39 +02:00
Don HO
5e262c8122
Add an non-UI option to allow regEx backward search
...
Set "regexBackward4PowerUser" to "yes" in config.xml to eanable this option.
2020-06-05 00:56:25 +02:00
Don HO
ade01204c8
Fix minor coding error & remove unused variables
2020-05-10 05:19:08 +02:00
Scott Sumner
ef2b5880d3
Assign ctrlm as default shortcut for invoking mark dialog
2020-05-05 15:19:52 -04:00
Scott Sumner
fbf6668a80
Fix Find/Replace history lost issue
...
Retain find history if config file value set too large
Fix #323 , close #8168
2020-04-30 06:39:36 +02:00
Don HO
d05bf63840
Add Nepali localization
2020-04-29 02:34:27 +02:00
Don HO
c3ec0cbf6e
Make vertical edge (column marker) usage easier
...
Simplify the UI to make vertical edge easy to use.
2020-04-17 16:20:34 +02:00
Don HO
cc2c9b7740
Implement multi-line edge feature
...
Close #3128
2020-04-13 04:15:32 +02:00
Don HO
bf2cd8e05a
Changes localization file name "chinese.xml" to "taiwaneseMandarin.xml"
...
Saying Taiwan is part of China is like saying Java is part of JavaScript.
2020-04-09 00:11:11 +02:00
Don HO
3de506bf48
Update copyright
...
Close #5919
2020-04-04 23:03:18 +02:00
Don HO
cfa3041c4d
Enhancement of preventing from null pointer exception of localtime
...
Fix #7952
2020-02-18 05:14:21 +01:00
Scott Sumner
4cc6215e63
Implement issue 905 to make Find window remember its position across runs
...
Close #905 , close #7898
2020-02-07 23:31:29 +01:00
Don HO
6e6341cc61
Make some codes conform to the defined coding style
2020-01-28 02:20:44 +01:00
conky77
30bf629858
Add Venetian localization
...
Close #7770
2020-01-08 10:08:16 +01:00
Christophe Meriaux
9387dcdaef
Fix restoring line position issue while document is wrapped
...
If you switch between tabs while wrap mode is enable, text jump to another lines.
It's an old bug, fixed in v7.5.9, but it had performance regression so it was reverted in v6.0.0.
It's been one year, and I'm back.
This works whatever the size of the file.
There isn't any performance regression because we don't use SCI_ENSUREVISIBLE scintilla command.
In case wrap option on, The restore position function is done in **twice** steps.
- First step: set selection, set anchor, set xoffset...
- Second step: once Scintilla has send the notification SCN_PAINTED, we can scroll several lines to set the first visible line to the correct wrapped line.
Keep in mind that Line wrapping is a background activity that takes time, specially for huge file.
Fix #2078 , fix #2576 , fix #3570 , fix #4825 , fix #4881 , close #7781
2020-01-06 10:18:46 +01:00
Don HO
7a1096de5b
Make filling find field of Find dialog with selected word(s) optional
...
Close #3243
2019-12-25 13:32:40 +05:00
Waldi Ravens
4228c315fd
Make cmd cli ("Open Containing Folder in cmd") customizable
...
Add "commandLineInterpreter" setting in config.xml
No UI to set it, user has to add the fowllowing line into config.xml:
<GUIConfig name="commandLineInterpreter">powershell</GUIConfig>
(Use your shell to replace powershell)
Close #7737 , close #7738
2019-12-15 18:27:34 +01:00
Don HO
3220eaaa30
Refine "Open UDL folder" command & make it translatable
2019-11-21 02:24:57 +01:00
Krzysztof Szewczyk
2458812a42
Add a submenu item in Languages menu to open UDL folder
...
Fix #5404 , close #7540
2019-11-19 10:11:57 +01:00
Waldi Ravens
88a2f68f05
Fix typo
...
Close #6233
2019-10-21 10:47:00 +02:00
Waldi Ravens
8e78307951
Fix initialization of _monospacedFontFinfDlg parameter
2019-10-19 09:23:26 +02:00
Don HO
dde38183d3
Make monospaced font in Find dialog optional
...
Default value is disabled (old behaviour).
2019-10-17 14:16:10 +02:00
Don HO
445dc5ebc1
Fix a memory leak for NppParameters
...
Fix a memory leak due to not releasing allocated memory for NppParameters while quitting Notepad++
2019-10-05 20:51:29 +02:00
Don HO
5cf296ee10
Remove Author from About and add Online Document to menu
...
Remove Author link from About dialog and add Online Document link to menu
2019-10-05 17:07:39 +02:00
Oirfeodent
d5c0ef2c77
Increase Keyword Set for the adaptation of new updated Scintilla
...
This will enable languages having more than 7 keyword sets to use it.
"You can set up to 9 lists of keywords for use by the current lexer. keyWordSet can be 0 to 8" :
https://www.scintilla.org/ScintillaDoc.html#SCI_SETKEYWORDS
Fix #6020 , close #6081
2019-08-23 11:29:45 +02:00
Don HO
66fc977304
Pass VS Toolset from v140_xp to v141
2019-08-17 03:41:59 +02:00
Don HO
06db9ee338
Code improvement for NppParameters
2019-08-14 22:13:24 +02:00
Don HO
bbc55d06f2
Code improvement for WcharMbcsConvertor
2019-08-14 01:54:56 +02:00
Don HO
3dbb2c4b8e
Make NppParameters singleton "new-less"
2019-08-10 23:53:59 +02:00
Micha Wiedenmann
b3a6638b93
'-nosession' must not overwrite config.xml ( Fix #3938 )
...
When `-nosession` is given as a command line parameter the attribute
`isSnapshotMode` in `config.xml` is overwritten with `no` regardless of
its original value.
<GUIConfig name="Backup" action="0" useCustumDir="no"
dir="" isSnapshotMode="yes" snapshotBackupTiming="7000" />
Change this to keep the original value.
Fix #3938 , close #5845
2019-08-03 01:10:49 +02:00
Don HO
2d15d90e02
Fix local variable shadows outer variable issues
2019-07-08 14:39:14 +02:00
Rajendra Singh
9539a892eb
Code quality improvement: pass string by reference instead of value
...
Also remove not implemented methods addBufferToView(), moveBuffer() and doActionOrNot() from Notepad_plus.h
Close #5784
2019-06-25 14:21:35 +02:00
Don HO
7e716a57f7
Add Ctrl+R shortcut for "Reload from disk" command
...
Close #20
2019-04-09 13:11:48 +02:00
Don HO
784eea3ef7
Remove the test of null pointer for delete
...
Since deleting a null pointer just does nothing:
https://isocpp.org/wiki/faq/freestore-mgmt#delete-handles-null
2019-04-06 16:43:23 +02:00
Rajendra Singh
cfa702a8a8
Retain read only flag state in session
...
Close #4987 , Fix #4409 , Fix #4872 , Fix #2970 , Fix #2548
2019-03-27 22:15:10 +01:00
Jon Bockhorst
b75ccd29e2
Added close unchanged tabs command
...
Close #5185 , close #5007
2019-03-26 13:11:15 +01:00