<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Feature Request: current Zoom to Status Bar]]></title><description><![CDATA[<p dir="auto">I don’t see any way to know what the current zoom setting is without experimenting.<br />
Could it possibly be added to the Status Bar?<br />
Thanks</p>
]]></description><link>https://community.notepad-plus-plus.org/topic/17321/feature-request-current-zoom-to-status-bar</link><generator>RSS for Node</generator><lastBuildDate>Fri, 08 May 2026 07:54:04 GMT</lastBuildDate><atom:link href="https://community.notepad-plus-plus.org/topic/17321.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 17 Mar 2019 12:41:47 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Feature Request: current Zoom to Status Bar on Mon, 18 Mar 2019 01:01:52 GMT]]></title><description><![CDATA[<p dir="auto">Maybe this is of some interest:  <a href="https://github.com/notepad-plus-plus/notepad-plus-plus/pull/5434" rel="nofollow ugc">https://github.com/notepad-plus-plus/notepad-plus-plus/pull/5434</a></p>
]]></description><link>https://community.notepad-plus-plus.org/post/41318</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/41318</guid><dc:creator><![CDATA[Alan Kilborn]]></dc:creator><pubDate>Mon, 18 Mar 2019 01:01:52 GMT</pubDate></item><item><title><![CDATA[Reply to Feature Request: current Zoom to Status Bar on Sun, 17 Mar 2019 23:43:40 GMT]]></title><description><![CDATA[<p dir="auto">and if you are stuck on how to install the pythonscript plugin on notepad++ 7.6.3 or above, please have a look at this guide:</p>
<p dir="auto"><a href="https://notepad-plus-plus.org/community/topic/17256/guide-how-to-install-the-pythonscript-plugin-on-notepad-7-6-3-7-6-4-and-above" rel="nofollow ugc">Guide: How to install the PythonScript plugin on Notepad++ 7.6.3, 7.6.4 and above</a>.</p>
<p dir="auto">don’t hesitate to ask, if you need help installing PythonScript on any other notepad++ version.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/41313</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/41313</guid><dc:creator><![CDATA[Meta Chuh]]></dc:creator><pubDate>Sun, 17 Mar 2019 23:43:40 GMT</pubDate></item><item><title><![CDATA[Reply to Feature Request: current Zoom to Status Bar on Sun, 17 Mar 2019 23:31:54 GMT]]></title><description><![CDATA[<p dir="auto">Yeah, this is a feature that they have yet to implement.</p>
<p dir="auto">I solved it by using this script placed inside the Pythonscript plugin startup script.</p>
<p dir="auto">So, just install the Pythonscript plugin, open its startup script and paste this into it, save and restart.</p>
<p dir="auto">If it works, please let me know here. See you.</p>
<pre><code>## Adds the zoom indicator to the statusbar.
import locale
locale.setlocale(locale.LC_ALL, '')

def StatusbarEOLOverride(args):
    _eolMode = editor.getEOLMode()
    _zoom = editor.getZoom()
    _eolString = ""
    _zoomString = ""
    if _eolMode == 0:
        _eolString = "CR+LF"
    elif _eolMode == 1:
        _eolString = "CR"
    elif _eolMode == 2:
        _eolString = "LF"
    if _zoom == 0:
        _zoomString = "0"
    else:
        _zoomString = '{:+}'.format(_zoom)
    notepad.setStatusBar(STATUSBARSECTION.EOFFORMAT, '{} | Zoom: {}'.format(_eolString, _zoomString))

editor.callback(StatusbarEOLOverride, [SCINTILLANOTIFICATION.UPDATEUI, SCINTILLANOTIFICATION.ZOOM]) # register callback
</code></pre>
]]></description><link>https://community.notepad-plus-plus.org/post/41312</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/41312</guid><dc:creator><![CDATA[SalviaSage]]></dc:creator><pubDate>Sun, 17 Mar 2019 23:31:54 GMT</pubDate></item><item><title><![CDATA[Reply to Feature Request: current Zoom to Status Bar on Sun, 17 Mar 2019 23:44:43 GMT]]></title><description><![CDATA[<p dir="auto">welcome to the notepad++ community, <a class="plugin-mentions-user plugin-mentions-a" href="/user/jvpage" aria-label="Profile: JVPage">@<bdi>JVPage</bdi></a></p>
<p dir="auto">displaying the zoom level at the status bar is a good idea and has been requested at the project’s feature and issue request tracker.<br />
see <a href="https://github.com/notepad-plus-plus/notepad-plus-plus/issues/4566" rel="nofollow ugc">&gt;&gt;&gt; here &lt;&lt;&lt;</a> for the newest request for this topic.</p>
<p dir="auto">note: a workaround discussion for displaying the zoom level using the pythonscript plugin has been started here:<br />
<a href="https://notepad-plus-plus.org/community/topic/15679/seeing-the-zoom-level-with-pythonscript" rel="nofollow ugc">Seeing the zoom level with PythonScript</a>, and solved by <a class="plugin-mentions-user plugin-mentions-a" href="/user/salviasage" aria-label="Profile: SalviaSage">@<bdi>SalviaSage</bdi></a>, as stated by <a class="plugin-mentions-user plugin-mentions-a" href="/user/scott-sumner" aria-label="Profile: Scott-Sumner">@<bdi>Scott-Sumner</bdi></a> a while ago, but i currently don’t know if it has been managed to display it everywhere at the status bar, together with the original section values, and not just sharing the “eol” or other sections.</p>
]]></description><link>https://community.notepad-plus-plus.org/post/41298</link><guid isPermaLink="true">https://community.notepad-plus-plus.org/post/41298</guid><dc:creator><![CDATA[Meta Chuh]]></dc:creator><pubDate>Sun, 17 Mar 2019 23:44:43 GMT</pubDate></item></channel></rss>