Commit Graph

2025 Commits

Author SHA1 Message Date
Don HO
3ee5615c5f Notepad++ new release v7.8.1 2019-10-29 02:41:19 +01:00
Palash Bansal
f05fedda76
Fix issue for Alt+Tab doesn't show Notepad++ (Windows 7)
Issue is because of Tool window being used instead of normal window for these 2 dialogs- "Close All" and "Rename"
Known issue already discussed on- https://stackoverflow.com/questions/3760571/showdialog-makes-app-window-disappear-from-windows-alt-tab-list

Excerpt from https://docs.microsoft.com/en-us/windows/win32/winmsg/extended-window-styles -

WS_EX_TOOLWINDOW 0x00000080L	The window is intended to be used as a floating toolbar. A tool window has a title bar that is shorter than a normal title bar, and the window title is drawn using a smaller font. A tool window does not appear in the taskbar or in the dialog that appears when the user presses ALT+TAB. If a tool window has a system menu, its icon is not displayed on the title bar. However, you can display the system menu by right-clicking or by typing ALT+SPACE.
DS_MODALFRAME is added for "Close All" dialog, because after making it normal window, it started showing default empty windows file icon.

Fix #6244, close #6252
2019-10-24 09:56:47 +02: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
e5d83dbc00
Update some localization files 2019-10-18 13:38:57 +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
bd95534ab2
Put an item of Preferences dlg in its right place. 2019-10-16 23:04:05 +02:00
Rajendra Singh
c16f7bbc1e
Fix a regression regarding notepad replacement issue
Fixed command line parsing logic error.

Root cause:
When you double click a file (where NPP has already replaced original Windows Notepad.exe) command like something like below is generated -

-notepadStyleCmdline -z "C:\WINDOWS\system32\NOTEPAD.EXE" F:\FakePath\PowerEditor\bin\change.log

After processing this command line, final command line is left as " F:\FakePath\PowerEditor\bin\change.log while others are ignored. Notice, quote " here just before the actual file path.

Later on, MS PAI ::PathIsRelative treats it as relative path because of quote " rather considering single file. It is expected too as per input to this API.

Now, notepad++ tries to open all the file from path F:\FakePath\PowerEditor\bin\ (in above case) along with file F:\FakePath\PowerEditor\bin\change.log.

Close #6215, fix #6211
2019-10-14 02:18:12 +02:00
Don HO
a739eade8e
Plugin list updater (in progress) 2019-10-13 21:48:27 +02:00
Don HO
45d4c8d35c Notepad++ 7.8 release 2019-10-11 01:41:48 +02:00
Don HO
29919bea22
Fix indent guideline bug regarding Python-like languages and non-Python-likes ones 2019-10-07 00:45:16 +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
Don HO
10f6ff6c1f
Fix a crash (regression) due to "new-less" of NppParameters
The commit 'Make NppParameters singleton "new-less"' make NppParameters instantiate in the stack instead of allocating in the heap:
3dbb2c4b8e

It makes Notepad++ crash:
https://community.notepad-plus-plus.org/topic/18316/notepad-7-8-release-candidate-3/4

The crash is on following code:

  vector<MacroShortcut> & vShortcuts = NppParameters::getInstance().getMacroList();
  size_t nbItems = vShortcuts.size();
  for (size_t itemIndex2 = 0; itemIndex2 < nbItems; ++itemIndex2)
  {
  ...

vShortcuts.size() here return a random large number, which makes crash.

The explanation about vector::size() unexpected behaviour:
https://stackoverflow.com/questions/30548944/c-vector-size-is-wrong-and-higher-than-the-number-of-elements

Obviously the stack size is not large enough to contain NppParameters singleton in 64 bits.
2019-10-03 14:05:50 +02:00
Don HO
fcaef73769
Fix macro playback crash issue
The crash issue is due to a mutex locked twice which should be a dead lock but a "device or resource busy" exception is lauched:
https://stackoverflow.com/questions/16664375/why-locking-a-stdmutex-doesnt-block-the-thread

From 7.8 the standard mutex is used, that changes the behaviour.
2019-10-02 03:18:31 +02:00
Oirfeodent
c92b3ca578
BaanC Add keyword lists and respective langs & styler xml tags
PR #6081 added the required keyword sets for BaanC.
Continuation of #5807 and the last change to enable all available scintilla keyword sets.

Close #6128
2019-09-25 09:53:25 +02:00
Don HO
53d2ca4dd9
Add a good geek joke 2019-09-15 23:34:35 +02:00
Scott Sumner
797fdc340d
Fix File-Rename failing when new name is on a different drive
Fix #1978, close #6111
2019-09-02 23:39:41 +02:00
Don HO
581aff630a
Use standard C++11 mutex
And remove unecessary files

Close #6093
2019-08-25 23:34:30 +02:00
Don HO
3439071c3c
Remove ATL (part two)
Use std::lock_guard instead of CComCritSecLock<CComAutoCriticalSection>

 Close #4320
2019-08-25 02:09:17 +02:00
Don HO
ec5fa6d2c4
Remove ATL (part one)
Use std::wstring instead of CStringW
2019-08-25 00:14:42 +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
Scott Sumner
e102ecb919
Fix find 2 occurrences in original/clonned doccuments issue
Fix for Find-All-in-All-Opened-Documents searching a cloned document two times, and reporting same results two times.

Fix #6704, close #6705
2019-08-22 12:53:43 +02:00
Don HO
ab46fe0806
Code enhancement: remove duplicated code 2019-08-22 01:19:22 +02:00
luisffranca
0d87d37d35
Handle Ctrl+A keyboard shortcut in MD5/SHA256 Generators
Added new window procedures for the HASH_PATH_EDIT/HASH_RESULT_EDIT
and HASH_TEXT_EDIT/HASH_RESULT_FOMTEXT_EDIT controls, where Ctrl+A
is now processed.

Fix #3863, close #3898, close #6034, close #6059
2019-08-22 00:50:13 +02:00
Oirfeodent
025236be6b
Enhance BaanC language support
Changes for BaanC based on new Scintilla Version.

Close #5807
2019-08-20 12:56:03 +02:00
Scott Sumner
132441867e
Bookmark all lines of multiline match
Fix #6018, close #6040
2019-08-20 00:51:01 +02:00
Scott Sumner
f6d6e42ac1
Fix "clear all marks in find dialog also removes bookmarks" issue
Fix partially "clear all marks in find dialog also removes bookmarks" issue:
* Bookmark line unticked: Clear all marks button press clears only all redmarking
* Bookmark line ticked: Clear all marks button press clears all redmarking and all bookmarks

Fix #3546, close #6042
2019-08-19 12:50:51 +02:00
Don HO
93a9962fde
Code enhancement: Use C++11 =default & =delete for the constructor & destructor 2019-08-19 02:05:21 +02:00
Rajendra Singh
3a1244177c
Code enhancement: Function arguments pass by reference
Close #6063
2019-08-18 01:16:23 +02:00
Nikita Kolotov
0bf3eea08a
Code enhancement: add std qualificator
Fixed build failure caused by use of function std::make_pair without qualificator.

Fix #6051, close #6052
2019-08-17 10:24:58 +02:00
Nikita Kolotov
e74cb34e22
Code enhancement: remove use of deprecated function std::bind2nd
Fixed use of deprecated function std::bind2nd.
2019-08-17 10:20:17 +02:00
Nikita Kolotov
d38559b339
Code enhancement: add base class template qualifier
Fixed build failure with "/permissive-" option caused by use of members of dependent base class template without qualifier.
2019-08-17 10:13:08 +02:00
Don HO
66fc977304
Pass VS Toolset from v140_xp to v141 2019-08-17 03:41:59 +02:00
Don HO
77da706207
Code enhancement: remove goto label
Close #6053, close #6054
2019-08-16 12:34:39 +02:00
Nikita Kolotov
67305b978c
Remove unecessary qualification
Remove extra qualification present on ShortcutMapper class members declarations

Close #6045, close #6046
2019-08-15 00:35:41 +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
2c764d7221
Code improvement for FileManager 2019-08-14 01:32:01 +02:00
Don HO
48f83a9d0f
Code improvement for EncodingMapper 2019-08-14 01:15:08 +02:00
Don HO
f80b0ed293
Add Npp Pugin List update capacity (in progress) 2019-08-13 23:51:05 +02:00
Rajendra Singh
938dae9b2a
Improve singleton
Close #6036
2019-08-13 12:48:05 +02:00
Don HO
3643a1875b
Make 2 singleton "new-less"
Make WcharMbcsConvertor & FileManager "new-less"
2019-08-11 01:17:53 +02:00
Don HO
3dbb2c4b8e
Make NppParameters singleton "new-less" 2019-08-10 23:53:59 +02:00
wjx0912
fc9dfc86fc
Make EncodingMapper singleton "new-less"
Use the modern way to code Singleton to get rid of the allocation memory.

Close #6031, close #6019
2019-08-10 19:32:57 +02:00
Scott Sumner
0922512eb3
Make "Remove Consecutive Duplicate Lines" to be macro recordable
Fix #6023, close #6024
2019-08-10 13:29:00 +02:00
Waldi Ravens
2a7a35a4a3
Make "Command Argument Help" MessageBox modal
Fix #4067, close #6027
2019-08-10 13:21:46 +02:00
grisha vanika
ab4cf88336
Fix Folder as Workspace crash and "queue overflow" issues
Fix crash of Folder as Workspace when too many directory changes happen:
Remove limit for amount of queued directory changes: use auto-reset Event instead of Semaphore.

Fix #6005, fix #5907, fix #3740, close #6005
2019-08-07 14:14:59 +02:00
Scott Sumner
9d79d6c017
Fix "preventing Find All Curr Doc working in macro" issue
Fix #5973, close #6006
2019-08-07 09:37:34 +02:00
Scott Sumner
cd9f761293
Make backward-dir checkbox be shown on Find window's Mark tab
Fix #5974, close #6016
2019-08-07 09:27:27 +02:00
Don HO
c35a2b5708
Make Combobox font monospace in Find dialog
Close #5920, fix #3361, close #6001
2019-08-05 02:45:01 +02:00
Cyrillev
053823e8ca
Fix check sign in Encoding menu not shown issue
Fix #3737, close #3738
2019-08-05 00:00:22 +02:00
Berner Martin
d901c73f7d
Add PL/SQL to FunctionList
Close #3741
2019-08-04 12:40:55 +02:00
Simon Sobisch
a5ec6be8a9
Enhance COBOL language support - function list & auto-completion
COBOL support in function list - new entries in functionList.xml (note: defaults to fixed-form reference format, manual switch to free-form reference-format possible in association for langID 50)

COBOL support in auto-completion - new file APIs/cobol.xml
COBOL syntax highlighter - recreated list

note: list of statements, functions and reserved words token from GnuCOBOL 3.0 (COBOL85,2002,2014 + extensions from IBM/MF/RM/ACUCOBOL), please report back if any words are missing

Close #4004
2019-08-04 00:54:18 +02:00
Scott Sumner
61abf06bf3
Make 'Clear all marks' and 'Inverse Bookmark' macroable
Fix #1948, close #5995
2019-08-03 16:26:25 +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
fb7785eeaa
Disambiguate 5 entries regarding encoding
Remove "Encode" word to avoid the confusion with "Convert".

Close #5951
2019-07-30 20:24:59 +02:00
Don HO
e50236f559
Remove redundant information in File Summary dialog
Update Chinese & French binary translation as well.
2019-07-27 11:03:14 +02:00
Christian Grasser
418d03acfe
Add capabilty to translate file summary dialog info
Close #5594, fix #1487
2019-07-27 10:33:51 +02:00
Don HO
4a80a125c0
Fix the crash due to NPPM_DESTROYSCINTILLAHANDLE message
Destroying allocated Scintilla makes Notepad++ crash because created Scintilla view's pointer is added into _referees of Buffer object automatically.
The deallocated scintilla view in _referees is used in Buffer::nextUntitledNewNumber().

So we do nothing here and let Notepad++ destroys allocated Scintilla while it exit and we keep this message for the sake of compability withe the existing plugins.

Fix #4487, close #1500, close #5949
2019-07-26 09:39:52 +02:00
Don HO
cfcca9f54a
UI position tuning
Close #5935
2019-07-23 01:59:30 +02:00
Don HO
4c7e18fd58
Fix PowerEditor compiling error 2019-07-22 13:45:31 +02:00
luisffranca
69da7a765d
Make context menu key work in Project Panel
Fix #3868, close #3871
2019-07-22 13:00:52 +02:00
Don HO
8fd691a3b2 Change shortcut for avoiding the clash
Change shortcut of "Replace All in All Opened Documents" from &o to &u.

Close #2276
2019-07-22 01:24:37 +02:00
Don HO
6f3166c865
Improve GUI in Find dialog
Thanx to:
https://github.com/notepad-plus-plus/notepad-plus-plus/issues/449#issuecomment-135799762
2019-07-18 23:28:02 +02:00
Don HO
d239c3d731
Make ASCII Codes Insertion panel's title shorter 2019-07-18 09:44:50 +02:00
mmosoll
6a30c31e0a
Add 2 new columns for HTML Code in the Character Panel
Added 2 new columns showing HTML Code and HTML Name in the Character Panel for ANSI and Windows-1252 character sets.
Modified NM_DBLCLK event to insert in document the current cell value when double clicked in the Character Panel.
Modified translation files for French, English, Spanish and Spanish Argentina to include the new added columns in the Character Panel.
Modified maximum length of the Character Panel title bar in Notepad_plus::launchAnsiCharPanel().

Close #4371
2019-07-17 20:01:48 +02:00
Silent
dc6bd2a8d2
Fix commandline parsing issue
Fix issues where filenames would have multiple whitespaces in them.

Fixes #5861, close #5883
2019-07-15 09:50:13 +02:00
AngryGamer
9acf6e302f
Fix Document Peeker constantly changing focus
1. Title Bar no longer flickers like crazy.
2. Can interact with other dialogs (such as "Find/Replace dialog" while hovering from tab to tab).

Fix #3324, close #5882
2019-07-09 01:54:07 +02:00
Don HO
2d15d90e02
Fix local variable shadows outer variable issues 2019-07-08 14:39:14 +02:00
Don HO
6ddbca3a60
Make Save dialog not resizable 2019-07-06 15:00:07 +02:00
Rajendra Singh
4ebcf61917
Enhance Save dialog GUI
Close #5587
2019-07-06 14:50:45 +02:00
AngryGamer
8b151ac991
Fix Sort Line as Integer regression
The regression was made by #5555:
ff20c264df

Close #5843, fix #5839
2019-07-06 02:51:01 +02:00
Rajendra Singh
e9277deaa6
Localize "Restore recent close file" command
Close #5557, fix #1476, fix #5137, fix #5672
2019-07-05 09:44:10 +02:00
Silent
401dbbc7d5
Disable integrity checks in Debug
Close #5884
2019-07-05 01:36:07 +02:00
Waldi Ravens
31ae813286
Allow plugins to load private DLL files from the plugins folder
The problem is the way Windows searches for dynamically linked DLLs (Dynamic-Link Library Search Order).
For example, LuaScript.dll is the plug-in DLL, loaded by Notepad++.exe, and lua53.dll is the auxiliary DLL, required by LuaScript.dll and also by user-installed Lua modules. Both DLLs should be located in \plugins\LuaScript. But, when Notepad++ calls LoadLibrary to load LuaScript.dll, Windows will not find the dynamically linked lua53.dll, hence the LoadLibrary call fails. This happens, because Windows will look in the application directory (which is the location of Notepad++.exe), and not in the LuaScript.dll directory.
To make Windows search in the LuaScript.dll directory, Notepad++ needs to call LoadLibraryEx with the LOAD_LIBRARY_SEARCH_DLL_LOAD_DIR flag.

Close #5802, close #5853
2019-07-04 20:29:05 +02:00
AngryGamer
6c034985a2
Fix crash when sorting out_of_range columns
Fix crash while sorting the right part of equal sign with column-selection:

100/20 = 5

1/3    = 0.333

22/7   = 3.14285714286

Note that empty lines between the numbers are intentional.

Fix #5865, fix #3391, close #3771
2019-07-04 01:39:52 +02:00
AngryGamer
8449d9f5ea
Add more OS information to debug info
Close #5869, close #5872
2019-07-03 21:19:33 +02:00
Don HO
3f7956dc1b
Add "No to All" and "Yes to All" options in Save dialog
It allows users, while closing files, to reply Yes or No only for once in Save dialog for the all rest of modified files.

Close #5835 , close #4385,  close #4392
2019-07-03 09:41:35 +02:00
Rajendra Singh
bfd8cd0702
Initialize a member value correctly to prevent from crash
_langType in CmdLineParamsDTO could not be copied so Initialize its value to prevent from the crash.

Close #5838
2019-06-27 09:42:47 +02:00
Rajendra Singh
105dcebb9e
Improved isAllDigits algo
Close #4530, close #5828
2019-06-25 21:03:33 +02:00
zufuliu
3f114a557a
Use only SC_IV_LOOKFORWARD for Python like folding.
Code folding block for Nim, VB and YAML includes tailing empty or whitespace only lines,
it's better for these lexers to use SC_IV_LOOKBOTH.

Close #5821
2019-06-25 19:52:13 +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
57a49c3ba5
Add the commandline argument to open folders in "folder as workspace" panel
Add the ability to open folders in "folder as workspace" panel via command line argument "-openFoldersAsWorkspace".
Example:
notepad++ -openFoldersAsWorkspace c:\src\myProj01 c:\src\myProj02
The above command will launch notepad++ with folder as workspace panel by opening myProj01 and myProj02 in panel.

Close #4253, close #5100
2019-06-25 13:50:41 +02:00
Don HO
eef1bf0ae9
Fix x64 compiling issue 2019-06-25 13:10:50 +02:00
Don HO
d1256c3c83
Fix indent indicators continue to following code blocks for Python
Fix indent indicators continue to following code blocks even if there is no indent for Python

Fix #5815
2019-06-23 16:15:57 +02:00
zufuliu
17628b7dd9
Fix Python folding collapse isuue
Fix Python folding collapse isuue by using a fold level stack.

Fix #1898, close #5131
2019-06-22 11:02:00 +02:00
Rajendra Singh
690fd45f07
Fix splitter resizing issue
Fix resizing dockable window (e.g. search result, function list, folder as workspace) and resizing the doc splitter (other view) one after the other issue.

Fix #5516, fix #680, fix #2097, close #5554
2019-06-21 09:43:41 +02:00
briddums
fa254e579c
Fix an issue in IDM_EDIT_CLEARREADONLY
Using ^= for the readonly attribute will cause it to always change the bit.  So if CLEARREADONLY is called on a file that isn't read only, the file will become read only.

Fix #5768, close #5774
2019-06-20 20:32:14 +02:00
AngryGamer
6d3606074a
Fix tab dragging issues under WINE and ReactOS
Fix tab dragging issues on both multiline and single line mode under WINE and ReactOS.

Fix #4885, close #5792
2019-06-20 20:27:42 +02:00
Don HO
4aec70273c Notepad++ 7.7.1 release 2019-06-20 02:13:55 +02:00
Don HO
04174b17a5
Restore conventional chameleon icon 2019-06-16 15:29:46 +02:00
AngryGamer
895c315df0
Fix drag and drop tab regression
The bug: Drag a short name tab to accross a longger name tab (w/o releasing mouse click) will make a swich - dragging the logger name instead of the shorter name one.
This regression is due to PR "Fix Tab non-responding after dragging bug".

This reverts commit c6e1a95098.

Fix #5072, fix #5450, open #4885
2019-06-15 11:37:06 +02:00
Rajendra Singh
1a97d3c854
Workarround to MS ReadDirectoryChanges bug
This is an workaround to deal with Microsoft issue in ReadDirectoryChanges notification
If command prompt is used to write file continuously (e.g. ping -t 8.8.8.8 > ping.log)
Then ReadDirectoryChanges does not detect the change.
The workarround is about using Notepad++ notification while Notepad++ getting focus.

Close #5773
2019-06-14 11:23:06 +02:00
Rajendra Singh
ad72f7c36c
Fix Reload dialog displaying issue during File Monitoring
Fix #5586, fix #4847, close #5591
2019-06-11 20:59:27 +02:00
Don HO
344850aedb
Fix assert in AutoCompletion::isAllDigits methode
Fix debug mode assert in `AutoCompletion::isAllDigits` methode while inputting non ASCII characters.

Fix #5280
2019-06-09 16:04:53 +02:00
Rajendra Singh
155c93d3b0
Fix "unhide lines" markers disappears issue
How to reproduce:
1. Select a few lines, trigger "Hide lines".
2. Select a few other lines, trigger "Hide lines" as well.
3. Unhide the topmost block by clicking on the appropriate marker.
4. The marker to restore the other block disappear. So the block is still hidden, it cannot be unhidden and there is no more visual indication there are hidden lines!

Fix #1112, Close #5665
2019-05-31 10:13:25 +02:00
Rajendra Singh
36230cb31c
Fix Plugin Menu is not localized issue When no plugin installed
Fix #5577, close #5592
2019-05-30 22:43:17 +02:00
Rajendra Singh
074a4bca93 Add "Copy File Name" command in context menu of "Folder as Workspace"
Close #5574, close #5597
2019-05-30 19:13:50 +02:00
Rajendra Singh
ff20c264df
Fix crash while sorting lines with numbers longer than 20 digits
Fix #5261, close #5555
2019-05-30 17:26:22 +02:00