[New Plugin] ExtSettings
-
Thank you for your detailed response and your suggestions.
In general I can say that many of the settings depend heavily on personal taste, the use case (e.g. simple text editing or coding), the used theme, the used font and its size, and many other factors which don’t come to my mind at the moment. Whether somebody wants to use a certain setting or whether he finds it useful or not depends on all these factors. I’m only the guy who makes these settings accessible to the normal user who doesn’t want to deal with scripting plugins and sending Scintilla events to configure them, though they are not available through the Notepad++ user interface.
I could not be able to see the difference between the Python style and Standard style options !
To see the differences in Python and C++ code have a look at >>> these comments <<< where I talked about the different styles with DonHo.
the vertical lines new feature is really interesting. … if, after defining some of them, with your plugin, you enable the
Vertical Edge
Settings inSettings > Preferences... > Editing
or switch from optionLine Mode
toBackground mode
or vice-versa, it deletes all the previous vertical lines defined and displays the classical vertical edge line !The single vertical line (provided natively by Notepad++) and the multiple vertical lines features are exclusive in Scintilla, you can only activate one of them. There is nothing I can do about that.
Wrap mode : Again, I did not see any difference between the options Word boundaries and Whitespace characters, of the drop-down list :-(
The differences are mostly remarkable when watching source code, e.g. in C or C++:
Wrap mode “At word boundaries”:
Wrap mode “At spaces”:
may be the
Mark Highlighting
title of the section should be renamedSmart Highlighting
That’s a good point, I’ll put it on my list.
if you’ve changed the color of the Smart Highlighting, as soon as you switch for an other opened document, and switch back, immediately, to your initial document, any smart Highlighting zones is colored with the default green color
Seems like setting the smart highlighting color has to be done whenever a tab has been activated. I will put it on my list.
Strangely, if you disable and re-enable the Smart Highlighting in
Settings > Preferences... > Highlighting
, while not changing current document, does keep the modified color of the Smart Highlighting !Nothing strange, toggling the smart highlighting feature and setting its color are two different Scintilla commands.
Wrap cursor at line start … Just tell me what I miss, here !
You miss nothing, its a question of personal taste. I’m a Delphi developer, thus I mostly use the Delphi IDE for coding. There I’m used to have no cursor wrapping at line start.
Selection alpha …
Thank you for providing these formulas, they could become handy for me at some time. But again, if and how someone uses this setting is up to him. It’s like always when telling a computer what to do: Garbage in -> Garbage out. I’m not a friend of the approach to fight human dumbness by technology, provided a certain setting can not cause serious damage or injuries.
I think that the Close button should be selected, by default, in order to close while hitting the Enter key . May be, the possibility to close, while hitting the ESC key would be nice, too !
and
Could you give the user the opportunity to get multiple configurations ?
I will think about it.
Could you consider adding the SCI_SETCARETSTICKY feature
I didn’t know that feature, but it could be useful. I will put it on my list.
More anecdotal, you could, also, consider the
SCI_SETMARGINLEFT
… andSCI_SETMARGINRIGHT
… settingsI already thought about it but considered it to be “anecdotal” as well. But since
Select full line
is anecdotal too, I will think about includingSCI_SETMARGINLEFT
andSCI_SETMARGINRIGHT
- equal rights for all anecdotal settings. ;-) -
Hi, @dinkumoil, and All,
Many thanks for your ( long !) comments, examples and for considering some of my requests !
So, ok, the difference between Wrap mode options
Word boundaries
andWhitespace characters
are rather particular and relative to languages !
Regarding the Indentation guide style, I’m, now, able to easily see the differences between the
3
styles :Real indentation
,Python style
orStandard style
I tested with the very small piece of
C
code :while (1) { if (result == None) test = 'OK' break; result = 2 }
and an analog
Python
code :while 1: if result = None: test = 'OK' break result = 2
For both, there are
3
pure blank lines, before and after theif
blockI assumed that default indentation is a tabulation char of size
4
and Python one is a4
spaces stringOf course, @Dinkumoil, if I temporarily disable your plugin, by renaming the
..\Plugins\ExtSettings
folder, we get the N++ default behavior, about Indentation guide lines ! That is to say :-
Standard style
, if current file is not aPython
file -
Python style
, if current file is aPython
file
So, may be, it would be worth to add, in your plugin, a
Default
option, for the Indentation guide lines feature, which would let N++ decide, by itself ! What is your feeling about it ?
This make me think of an other improvement. If, you ready to add multiple configurations, you could consider a default one, which leave all the N++ options unchanged. That is to say, with the values :
-
Backspace unindents :
No
-
Folding lines :
Yes
-
Indentation guide lines :
Default
( New option ) -
White space style :
Invisible
-
White space size :
2
-
Upper line spacing :
0
-
Lower line spacing :
0
-
Vertical Lines :
None
-
Wrap mode :
No line wrapping
-
End of Subline :
Yes
-
Start of Subline :
No
-
Line number margin :
No
-
Subline end near text :
No
-
Subline start near text :
No
-
Highlighting style :
Filled rounded box
-
Color :
Green
-
Filling alpha :
100
-
Outline alpha :
50
-
Cursor beyond line endings :
No
-
Wrap cursor at line start :
Yes
-
Select full line :
No
-
Selection alpha :
256
-
Multi Paste :
Yes
-
Convert EOL on paste :
Yes
-
Magnification :
0
Cheers,
guy038
-
-
@guy038 said in [New Plugin] ExtSettings:
So, may be, it would be worth to add, in your plugin, a Default option, for the Indentation guide lines feature, which would let N++ decide, by itself !
I think about to remove the whole indentation guide line feature from my plugin. As you already noticed, Notepad++ now (since v7.8) switches to Python style by itself when it detects that the current active tab contains a Python code file and it switches to Standard style when it detects a non-Python file. Since this Scintilla setting has global scope, Notepad++ does this decision at every tab switch. I figured out that it does that even when changing the theme. So my plugin virtually has “to fight” against the build-in Notepad++ logic and, like when changing the theme, there are cicumstances it “looses” that fight. Since I don’t like non-robust features and I don’t want to fiddle around in Notepad++ too much, it’s likely to be the best to remove that feature.
you could consider a default one, which leave all the N++ options unchanged.
I think that’s not a good idea because the defaults of Notepad++ could change over time, thus I would have to synchronize my plugin with the changes in Notepad++. If a user wants a default configuration he only has to delete the settings file.
-
First, thank you for your work on this plugin, I’ve found it very useful!
I would like to report two small issues. The first is with adding vertical lines.
Expected Behavior: I enter a column, I click “Add”, I get a new vertical line in that list in the bottom left.
Actual Behavior: I enter a column, I click “Add”, and I get no response. I need to select a color first, even though the color picker implies that it’s defaulting to black.This behavior led me to believe your plugin was bugged until I looked into it more. Making this a bit more user-friendly by actually having it default to black (or grey if you’re worried about people using dark themes) would help.
The second issue. With the Extended Settings menu open, when I alt-tab out of Notepad++, I cannot alt-tab back in.
Expected Behavior: Open ExtSetting Menu. Alt-tab onto a window that covers Notepad++. Alt-tab back to Notepad++. Notepad++ should be the top-level window graphically and in the alt-tab menu.
Actual Behavior. Open ExtSetting Menu. Alt-tab onto a window that covers Notepad++. Alt-tab back to Notepad++. Notepad++ is not the top-level window graphically, but IS the top-level window in the alt-tab menu. -
Thank you for your issue reports. You are absolutely right with both of them. Unfortunately I’m very busy in my job for the next months. So, don’t expect a short-time fix, sorry.
-
@dinkumoil
Thanks for this nice plugin.
Is it possible to add on the UI a button to apply the configuration ?Thanks
-
You mean applying the settings without closing the dialog? I already thought about it. I agree it would be useful.
But as I said, currently I’m so busy in my job that I’m happy to be off-keyboard late in the evenings and even at the weekends.
-
@dinkumoil yes that’s it. You perfectly got my point ;-)
Are you on github ? Any chance that someone else can contribute ?
-
The plugin is hosted at SoureForge in an SVN repository and is written with Delphi XE2. If you have an SourceForge account we can talk about collaboration. Another possibility would be to exchange *.patch files.
-
@dinkumoil said in [New Plugin] ExtSettings:
Delphi XE2
It would have been nice but I don’t know anything in Delphi XE2
sorry -
This post is deleted! -
-
In Notepad++ v7.9.1 32-bit the settings are not being saved.
I’m not able to reproduce that with a portable v7.9.1 32 bit.
Any chance of an update?
It’s in the pipeline, but it may still take a while.
-
I just had the strangest bug, that appears to be in (or at least affected) ExtSettings v1.2.1. The ExtSettings.ini file got corrupted to be all NULL bytes! I didn’t have a Notepad++ crash, so I’m not sure what could have caused that. And it seemed to happen in the middle of a Notepad++ editing session.
Backstory and debug: I woke my computer this morning, and was working in a web editor in my browser.
I think I had done selecting earlier this morning without difficulty, but I’m not 100% sure. But this time, when I went to copy some text from Notepad++ to my browser, and the selection highlighting was gone in Notepad++. I checked Style Configurator, which showed proper Selected text colour. Restarting Notepad++ didn’t fix it; rebooting didn’t fix it; I verified other apps still highlighted properly. Running a fresh portable unzip of Notepad++ didn’t have the problem – so I knew it was something specific to my normal instance of Notepad++. I temporarily renamed all my normal Notepad++ config files and restarted, to make sure that stylers.xml or something else hadn’t been corrupted, but still no highlighting. Disabled all my plugins, and the problem went away. Restored my normal config files with plugins disabled, and highlighting still worked. Enabled all the plugins and the problem returned, so confirmed it was a plugin problem of some sort. Enabling one at a time narrowed it down to highlighting stopped working when ExtSettings was loaded. I renamed ExtSettings.ini and restarted with ExtSettings enabled, and everything worked normally. I changed a setting in there (to force it to save a new ExtSettings.ini) and restarted, and it was still working. When I compared the renamed file to the new ini, I saw that the old/renamed version was 153 bytes of NULL, instead of 153 bytes of ini text.So it sounds similar to the old Notepad++ NULL bug, but it’s with the ExtSettings.ini file. I haven’t ever manually edited the ExtSettings.ini file directly in Notepad++, so I don’t think it was a problem with the editor directly. And I hadn’t recently made any changes to the ExtSettings through the plugin GUI, so I am not sure why it would have been trying to write/edit the INI yesterday or today. There has not been a recent crash of my OS or of Notepad++. I know that yesterday, I wasn’t having any difficulty selecting text, so the NULL corruption either happened while just in the course of normal Notepad++ editing this morning, or it happened when my computer went to sleep last night and/or when it woke up this morning. So, I unfortunately don’t have a repeatable circumstance for you to try to replicate the bug. (I know, I hate it when others report bugs without a repeatable circumstance.)
@dinkumoil , When you create/open/write the INI file, are you using ‘CreateFile’ or similar API calls? If so, are you using the FILE_FLAG_WRITE_THROUGH to make sure it writes right away, rather than caching first? If you need help, I know that @pnedev is an expert on that now. :-)
Notepad++ v7.9.2 (64-bit) Build time : Dec 31 2020 - 04:01:34 Path : C:\usr\local\apps\notepad++\notepad++.exe Admin mode : OFF Local Conf mode : ON OS Name : Windows 10 Enterprise (64-bit) OS Version : 1903 OS Build : 18362.1256 Current ANSI codepage : 1252 Plugins : ComparePlugin.dll ExtSettings.dll HexEditor.dll LuaScript.dll MarkdownViewerPlusPlus.dll mimeTools.dll NppConsole.dll NppConverter.dll NppEditorConfig.dll NppExec.dll NppExport.dll NppFTP.dll NppUISpy.dll PreviewHTML.dll PythonScript.dll QuickText.dll TagLEET.dll XMLTools.dll
-
For writing the settings file I use a Delphi class that encapsulates the handling of INI files. AFAIK this class uses some Windows APIs for INI files (e.g. GetPrivateProfileString). Thus I don’t know if buffered write comes into play when the file is saved.
The plugin’s INI file is written when its dialog is closed (the dialog’s window is destroyd as well in this moment). That means the last change of this file happened when you used the plugin for the last time. Thus, I have no clue what could have caused NUL-ing the INI file - especially as you wrote
I hadn’t recently made any changes to the ExtSettings through the plugin GUI, so I am not sure why it would have been trying to write/edit the INI yesterday or today.
Sorry, I have no idea how this could have happend and how to reproduce this incident.
-
I have an apparent compatibility problem with Notepad++ V8 and ExtSettings 1.2.1. The Vertical Lines settings are greyed out and the list is empty
even though my ExtSettings.ini[Header] Version=1.0 [Settings] BackspaceUnindents=0 FoldingLines=0 IndentationGuideStyle=0 WhiteSpaceStyle=0 WhiteSpaceSize=4 UpperLineSpacing=-2 LowerLineSpacing=-1 LineWrappingMode=0 LineWrappingMarkerType=$00000003 LineWrappingMarkerLocation=$00000003 MatchHighlightingStyle=6 MatchHighlightingColor=$0000FF00 MatchHighlightingFillAlpha=100 MatchHighlightingOutlineAlpha=255 CursorBeyondLineEndings=0 WrapCursorAtLineStart=0 SelectFullLine=0 SelectionAlpha=256 MultiPaste=1 ConvertEolOnPaste=1 PrintingMagnification=-1 VerticalLine0=100;$00FFFF00 VerticalLine1=130;$00808080
still has entries set up with Notepad++ 7.9.5.
I also have 100 130 set in n++ own preferences, but when n++ starts, the lines are gone. If I re-enter 100 130 in preferences, they re-appear. If I open and close the ExtSettings dialog, they are gone again.
If I enter just 100 in preferences WITHOUT background mode and open/close ExtSettings dialog, it changes from a line to background mode highlighting at 100.
All was well in 7.9.5…
-
Thank you for your bug report. I can confirm this is a bug. I will fix it when I have some spare time, but this can take a while. Due to dark mode related changes there are some other things to fix, too.
For future bug reports: Please use the issue tracker of the plugin at SourceForge when possible.
-
@dinkumoil said in [New Plugin] ExtSettings:
I will fix it when I have some spare time, but this can take a while.
Probably just as well to wait for the dust to settle on v8 before bothering. ExtSettings is still a high value plugin even with a little breakage.
-
For anyone finding this in 2022, Notepad++ v8.4.5 (and probably earlier versions too) has this functionality built in.
To set the vertical lines go to: Preferences -> Margins/Border/Edge
Under “Vertical Edge Settings” put in the column number you want each line to show up at, separated by a space
-
After a long waiting time the new version 1.3 of the ExtSettings plugin has been released.
Some settings have been removed because Notepad++ has evolved, thus they were obsolete now. Other settings have been added because users have asked for them. Also some bugs have been fixed, for example the plugin erroneously deactivated some of its features from Notepad++ v8.0 onwards.
This is the new UI with new features marked in red (on Notepad++ v8.4.8, in older versions some options will be not available):
Have fun!
Change log since v1.2.2
v1.3 - January 2023
- changed: Removed feature “multiple vertical lines” as it can be configured in Notepad++ natively since v7.8.6.
- changed: Settings regarding smart highlighting (previously called “search match highlighting”) have been renamed to follow official naming in Notepad++.
- enhanced: Added setting for sticky cursor mode.
- enhanced: Added settings for text tag that can be shown to the right of first line of a folded code block (available in Notepad++ v7.8 and newer).
- enhanced: Added settings for text color of selected text.
- fixed: White space size setting is reset to Notepad++ default value when white space indicators are toggled on or off.
- fixed: Smart highlighting color is reset to Notepad++ default value when switching to another tab.
v1.2.2 - November 2022
- fixed: When plugin’s dialog boxes are on screen but hidden by another application’s window which has input focus, it is not possible to return to Notepad++ by clicking its taskbar icon.
- fixed: Wrong implementation of Notepad++ version comparison.
- enhanced: Added support for Dark Mode icons.
- enhanced: Added new Notepad++ message constants from v7.9.2 up to v8.4.7
- enhanced: Added new Notepad++ menu command ids from v7.9.6 up to 8.4.7
- enhanced: Added new Scintilla constants from v4.4.6 up to v5.3.1
- enhanced: Adapted to new Scintilla v5.3.1 API of Notepad++ v8.4.7