Editor: extended the docstring functionality to be invocable via a keyboard shortcut (Ctrl+Alt+D).

Sat, 23 Jan 2021 12:02:52 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 23 Jan 2021 12:02:52 +0100
changeset 8000
47b15df088e4
parent 7999
159689297bc0
child 8001
3b33b7d493ff

Editor: extended the docstring functionality to be invocable via a keyboard shortcut (Ctrl+Alt+D).

docs/changelog file | annotate | diff | comparison | revisions
eric6/APIs/Python3/eric6.api file | annotate | diff | comparison | revisions
eric6/Documentation/Help/source.qch file | annotate | diff | comparison | revisions
eric6/Documentation/Help/source.qhp file | annotate | diff | comparison | revisions
eric6/Documentation/Source/eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html file | annotate | diff | comparison | revisions
eric6/Documentation/Source/eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html file | annotate | diff | comparison | revisions
eric6/Documentation/Source/eric6.QScintilla.Editor.html file | annotate | diff | comparison | revisions
eric6/Documentation/Source/eric6.ViewManager.ViewManager.html file | annotate | diff | comparison | revisions
eric6/Project/Project.py file | annotate | diff | comparison | revisions
eric6/QScintilla/DocstringGenerator/BaseDocstringGenerator.py file | annotate | diff | comparison | revisions
eric6/QScintilla/DocstringGenerator/EricdocGenerator.py file | annotate | diff | comparison | revisions
eric6/QScintilla/DocstringGenerator/GoogledocGenerator.py file | annotate | diff | comparison | revisions
eric6/QScintilla/DocstringGenerator/NumpydocGenerator.py file | annotate | diff | comparison | revisions
eric6/QScintilla/DocstringGenerator/PyDocstringGenerator.py file | annotate | diff | comparison | revisions
eric6/QScintilla/DocstringGenerator/SphinxdocGenerator.py file | annotate | diff | comparison | revisions
eric6/QScintilla/Editor.py file | annotate | diff | comparison | revisions
eric6/ViewManager/ViewManager.py file | annotate | diff | comparison | revisions
eric6/i18n/eric6_cs.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_de.qm file | annotate | diff | comparison | revisions
eric6/i18n/eric6_de.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_empty.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_en.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_es.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_fr.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_it.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_pt.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_ru.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_tr.ts file | annotate | diff | comparison | revisions
eric6/i18n/eric6_zh_CN.ts file | annotate | diff | comparison | revisions
--- a/docs/changelog	Fri Jan 22 16:55:43 2021 +0100
+++ b/docs/changelog	Sat Jan 23 12:02:52 2021 +0100
@@ -28,8 +28,10 @@
      ( (, ), [, ], {, }, <, > ) characters
   -- extended the exporters to support sub-styles
   -- added functionality to insert docstring templates via the context menu
-     (cursor placed on first line of function definition) or after entering
-     the docstring start string (e.g. """ for Python)
+     (cursor placed on first line of function definition), after entering
+     the docstring start string (e.g. """ for Python) or via a keyboard
+     shortcut (default: Ctrl+Alt+D) when cursor is either placed on the
+     function definition line or after the end of the function definition
 - Find File Dialog
   -- added option to exclude hidden files and directories
   -- changed directory tree search logic to derive the file patterns from the
--- a/eric6/APIs/Python3/eric6.api	Fri Jan 22 16:55:43 2021 +0100
+++ b/eric6/APIs/Python3/eric6.api	Sat Jan 23 12:02:52 2021 +0100
@@ -7368,6 +7368,7 @@
 eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.BaseDocstringGenerator.getDocstringType?4()
 eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.BaseDocstringGenerator.hasFunctionDefinition?4(cursorPosition)
 eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.BaseDocstringGenerator.insertDocstring?4(cursorPosition, fromStart=True)
+eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.BaseDocstringGenerator.insertDocstringFromShortcut?4(cursorPosition)
 eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.BaseDocstringGenerator.isDocstringIntro?4(cursorPosition)
 eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.BaseDocstringGenerator.isFunctionStart?4(text)
 eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.BaseDocstringGenerator?1(editor)
@@ -7380,6 +7381,7 @@
 eric6.QScintilla.DocstringGenerator.NumpydocGenerator.generateNumpyDoc?4(functionInfo, editor)
 eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.PyDocstringGenerator.hasFunctionDefinition?4(cursorPosition)
 eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.PyDocstringGenerator.insertDocstring?4(cursorPosition, fromStart=True)
+eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.PyDocstringGenerator.insertDocstringFromShortcut?4(cursorPosition)
 eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.PyDocstringGenerator.isDocstringIntro?4(cursorPosition)
 eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.PyDocstringGenerator.isFunctionStart?4(text)
 eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.PyDocstringGenerator?1(editor)
@@ -7536,6 +7538,7 @@
 eric6.QScintilla.Editor.Editor.highlight?4(line=None, error=False, syntaxError=False)
 eric6.QScintilla.Editor.Editor.highlightVisible?4()
 eric6.QScintilla.Editor.Editor.indentLineOrSelection?4()
+eric6.QScintilla.Editor.Editor.insertDocstring?4()
 eric6.QScintilla.Editor.Editor.isClone?4(editor)
 eric6.QScintilla.Editor.Editor.isJavascriptFile?4()
 eric6.QScintilla.Editor.Editor.isLastEditPositionAvailable?4()
Binary file eric6/Documentation/Help/source.qch has changed
--- a/eric6/Documentation/Help/source.qhp	Fri Jan 22 16:55:43 2021 +0100
+++ b/eric6/Documentation/Help/source.qhp	Sat Jan 23 12:02:52 2021 +0100
@@ -1869,6 +1869,7 @@
       <keyword name="BaseDocstringGenerator.getDocstringType" id="BaseDocstringGenerator.getDocstringType" ref="eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html#BaseDocstringGenerator.getDocstringType" />
       <keyword name="BaseDocstringGenerator.hasFunctionDefinition" id="BaseDocstringGenerator.hasFunctionDefinition" ref="eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html#BaseDocstringGenerator.hasFunctionDefinition" />
       <keyword name="BaseDocstringGenerator.insertDocstring" id="BaseDocstringGenerator.insertDocstring" ref="eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html#BaseDocstringGenerator.insertDocstring" />
+      <keyword name="BaseDocstringGenerator.insertDocstringFromShortcut" id="BaseDocstringGenerator.insertDocstringFromShortcut" ref="eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html#BaseDocstringGenerator.insertDocstringFromShortcut" />
       <keyword name="BaseDocstringGenerator.isDocstringIntro" id="BaseDocstringGenerator.isDocstringIntro" ref="eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html#BaseDocstringGenerator.isDocstringIntro" />
       <keyword name="BaseDocstringGenerator.isFunctionStart" id="BaseDocstringGenerator.isFunctionStart" ref="eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html#BaseDocstringGenerator.isFunctionStart" />
       <keyword name="BaseReport" id="BaseReport" ref="eric6.Plugins.CheckerPlugins.CodeStyleChecker.pycodestyle.html#BaseReport" />
@@ -5090,6 +5091,7 @@
       <keyword name="Editor.highlight" id="Editor.highlight" ref="eric6.QScintilla.Editor.html#Editor.highlight" />
       <keyword name="Editor.highlightVisible" id="Editor.highlightVisible" ref="eric6.QScintilla.Editor.html#Editor.highlightVisible" />
       <keyword name="Editor.indentLineOrSelection" id="Editor.indentLineOrSelection" ref="eric6.QScintilla.Editor.html#Editor.indentLineOrSelection" />
+      <keyword name="Editor.insertDocstring" id="Editor.insertDocstring" ref="eric6.QScintilla.Editor.html#Editor.insertDocstring" />
       <keyword name="Editor.isClone" id="Editor.isClone" ref="eric6.QScintilla.Editor.html#Editor.isClone" />
       <keyword name="Editor.isJavascriptFile" id="Editor.isJavascriptFile" ref="eric6.QScintilla.Editor.html#Editor.isJavascriptFile" />
       <keyword name="Editor.isLastEditPositionAvailable" id="Editor.isLastEditPositionAvailable" ref="eric6.QScintilla.Editor.html#Editor.isLastEditPositionAvailable" />
@@ -11951,6 +11953,7 @@
       <keyword name="PyDocstringGenerator.__isTripleQuotesStart" id="PyDocstringGenerator.__isTripleQuotesStart" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyDocstringGenerator.__isTripleQuotesStart" />
       <keyword name="PyDocstringGenerator.hasFunctionDefinition" id="PyDocstringGenerator.hasFunctionDefinition" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyDocstringGenerator.hasFunctionDefinition" />
       <keyword name="PyDocstringGenerator.insertDocstring" id="PyDocstringGenerator.insertDocstring" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyDocstringGenerator.insertDocstring" />
+      <keyword name="PyDocstringGenerator.insertDocstringFromShortcut" id="PyDocstringGenerator.insertDocstringFromShortcut" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyDocstringGenerator.insertDocstringFromShortcut" />
       <keyword name="PyDocstringGenerator.isDocstringIntro" id="PyDocstringGenerator.isDocstringIntro" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyDocstringGenerator.isDocstringIntro" />
       <keyword name="PyDocstringGenerator.isFunctionStart" id="PyDocstringGenerator.isFunctionStart" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyDocstringGenerator.isFunctionStart" />
       <keyword name="PyFunctionInfo" id="PyFunctionInfo" ref="eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html#PyFunctionInfo" />
@@ -15947,6 +15950,7 @@
       <keyword name="ViewManager.__editDelete" id="ViewManager.__editDelete" ref="eric6.ViewManager.ViewManager.html#ViewManager.__editDelete" />
       <keyword name="ViewManager.__editDeselectAll" id="ViewManager.__editDeselectAll" ref="eric6.ViewManager.ViewManager.html#ViewManager.__editDeselectAll" />
       <keyword name="ViewManager.__editIndent" id="ViewManager.__editIndent" ref="eric6.ViewManager.ViewManager.html#ViewManager.__editIndent" />
+      <keyword name="ViewManager.__editInsertDocstring" id="ViewManager.__editInsertDocstring" ref="eric6.ViewManager.ViewManager.html#ViewManager.__editInsertDocstring" />
       <keyword name="ViewManager.__editJoin" id="ViewManager.__editJoin" ref="eric6.ViewManager.ViewManager.html#ViewManager.__editJoin" />
       <keyword name="ViewManager.__editPaste" id="ViewManager.__editPaste" ref="eric6.ViewManager.ViewManager.html#ViewManager.__editPaste" />
       <keyword name="ViewManager.__editProjectPEL" id="ViewManager.__editProjectPEL" ref="eric6.ViewManager.ViewManager.html#ViewManager.__editProjectPEL" />
--- a/eric6/Documentation/Source/eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html	Fri Jan 22 16:55:43 2021 +0100
+++ b/eric6/Documentation/Source/eric6.QScintilla.DocstringGenerator.BaseDocstringGenerator.html	Sat Jan 23 12:02:52 2021 +0100
@@ -101,6 +101,10 @@
 <td>Public method to insert a docstring for the function at the cursor position.</td>
 </tr>
 <tr>
+<td><a href="#BaseDocstringGenerator.insertDocstringFromShortcut">insertDocstringFromShortcut</a></td>
+<td>Public method to insert a docstring for the function at the cursor position initiated via a keyboard shortcut.</td>
+</tr>
+<tr>
 <td><a href="#BaseDocstringGenerator.isDocstringIntro">isDocstringIntro</a></td>
 <td>Public function to test, if the line up to the cursor position might be introducing a docstring.</td>
 </tr>
@@ -227,6 +231,21 @@
             on the line starting the function definition
 </dd>
 </dl>
+<a NAME="BaseDocstringGenerator.insertDocstringFromShortcut" ID="BaseDocstringGenerator.insertDocstringFromShortcut"></a>
+<h4>BaseDocstringGenerator.insertDocstringFromShortcut</h4>
+<b>insertDocstringFromShortcut</b>(<i>cursorPosition</i>)
+
+<p>
+        Public method to insert a docstring for the function at the cursor
+        position initiated via a keyboard shortcut.
+</p>
+<dl>
+
+<dt><i>cursorPosition</i> (tuple of (int, int))</dt>
+<dd>
+position of the cursor (line and index)
+</dd>
+</dl>
 <a NAME="BaseDocstringGenerator.isDocstringIntro" ID="BaseDocstringGenerator.isDocstringIntro"></a>
 <h4>BaseDocstringGenerator.isDocstringIntro</h4>
 <b>isDocstringIntro</b>(<i>cursorPosition</i>)
--- a/eric6/Documentation/Source/eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html	Fri Jan 22 16:55:43 2021 +0100
+++ b/eric6/Documentation/Source/eric6.QScintilla.DocstringGenerator.PyDocstringGenerator.html	Sat Jan 23 12:02:52 2021 +0100
@@ -117,6 +117,10 @@
 <td>Public method to insert a docstring for the function at the cursor position.</td>
 </tr>
 <tr>
+<td><a href="#PyDocstringGenerator.insertDocstringFromShortcut">insertDocstringFromShortcut</a></td>
+<td>Public method to insert a docstring for the function at the cursor position initiated via a keyboard shortcut.</td>
+</tr>
+<tr>
 <td><a href="#PyDocstringGenerator.isDocstringIntro">isDocstringIntro</a></td>
 <td>Public function to test, if the line up to the cursor position might be introducing a docstring.</td>
 </tr>
@@ -405,6 +409,21 @@
             on the line starting the function definition
 </dd>
 </dl>
+<a NAME="PyDocstringGenerator.insertDocstringFromShortcut" ID="PyDocstringGenerator.insertDocstringFromShortcut"></a>
+<h4>PyDocstringGenerator.insertDocstringFromShortcut</h4>
+<b>insertDocstringFromShortcut</b>(<i>cursorPosition</i>)
+
+<p>
+        Public method to insert a docstring for the function at the cursor
+        position initiated via a keyboard shortcut.
+</p>
+<dl>
+
+<dt><i>cursorPosition</i> (tuple of (int, int))</dt>
+<dd>
+position of the cursor (line and index)
+</dd>
+</dl>
 <a NAME="PyDocstringGenerator.isDocstringIntro" ID="PyDocstringGenerator.isDocstringIntro"></a>
 <h4>PyDocstringGenerator.isDocstringIntro</h4>
 <b>isDocstringIntro</b>(<i>cursorPosition</i>)
--- a/eric6/Documentation/Source/eric6.QScintilla.Editor.html	Fri Jan 22 16:55:43 2021 +0100
+++ b/eric6/Documentation/Source/eric6.QScintilla.Editor.html	Sat Jan 23 12:02:52 2021 +0100
@@ -1349,6 +1349,10 @@
 <td>Public slot to indent the current line or current selection.</td>
 </tr>
 <tr>
+<td><a href="#Editor.insertDocstring">insertDocstring</a></td>
+<td>Public method to generate and insert a docstring for the function under the cursor.</td>
+</tr>
+<tr>
 <td><a href="#Editor.isClone">isClone</a></td>
 <td>Public method to test, if the given editor is a clone.</td>
 </tr>
@@ -5591,6 +5595,18 @@
 <p>
         Public slot to indent the current line or current selection.
 </p>
+<a NAME="Editor.insertDocstring" ID="Editor.insertDocstring"></a>
+<h4>Editor.insertDocstring</h4>
+<b>insertDocstring</b>(<i></i>)
+
+<p>
+        Public method to generate and insert a docstring for the function under
+        the cursor.
+</p>
+<p>
+        Note: This method is called via a keyboard shortcut or through the
+        global 'Edit' menu.
+</p>
 <a NAME="Editor.isClone" ID="Editor.isClone"></a>
 <h4>Editor.isClone</h4>
 <b>isClone</b>(<i>editor</i>)
--- a/eric6/Documentation/Source/eric6.ViewManager.ViewManager.html	Fri Jan 22 16:55:43 2021 +0100
+++ b/eric6/Documentation/Source/eric6.ViewManager.ViewManager.html	Sat Jan 23 12:02:52 2021 +0100
@@ -410,6 +410,10 @@
 <td>Private method to handle the indent action.</td>
 </tr>
 <tr>
+<td><a href="#ViewManager.__editInsertDocstring">__editInsertDocstring</a></td>
+<td>Private method to insert a docstring.</td>
+</tr>
+<tr>
 <td><a href="#ViewManager.__editJoin">__editJoin</a></td>
 <td>Private method to handle the join action.</td>
 </tr>
@@ -1653,6 +1657,13 @@
 <p>
         Private method to handle the indent action.
 </p>
+<a NAME="ViewManager.__editInsertDocstring" ID="ViewManager.__editInsertDocstring"></a>
+<h4>ViewManager.__editInsertDocstring</h4>
+<b>__editInsertDocstring</b>(<i></i>)
+
+<p>
+        Private method to insert a docstring.
+</p>
 <a NAME="ViewManager.__editJoin" ID="ViewManager.__editJoin"></a>
 <h4>ViewManager.__editJoin</h4>
 <b>__editJoin</b>(<i></i>)
--- a/eric6/Project/Project.py	Fri Jan 22 16:55:43 2021 +0100
+++ b/eric6/Project/Project.py	Sat Jan 23 12:02:52 2021 +0100
@@ -521,6 +521,7 @@
         @param key key of the data entry to get (string).
         @return a copy of the requested data or None
         """
+        # __IGNORE_WARNING_D202__
         if (
             category in ["PROJECTTYPESPECIFICDATA", "CHECKERSPARMS",
                          "PACKAGERSPARMS", "DOCUMENTATIONPARMS",
@@ -542,6 +543,7 @@
         @param data data to be stored
         @return flag indicating success (boolean)
         """
+        # __IGNORE_WARNING_D202__
         if category not in ["PROJECTTYPESPECIFICDATA", "CHECKERSPARMS",
                             "PACKAGERSPARMS", "DOCUMENTATIONPARMS",
                             "OTHERTOOLSPARMS"]:
--- a/eric6/QScintilla/DocstringGenerator/BaseDocstringGenerator.py	Fri Jan 22 16:55:43 2021 +0100
+++ b/eric6/QScintilla/DocstringGenerator/BaseDocstringGenerator.py	Sat Jan 23 12:02:52 2021 +0100
@@ -98,7 +98,18 @@
         """
         # just do nothing in the base class
         return
-
+    
+    def insertDocstringFromShortcut(self, cursorPosition):
+        """
+        Public method to insert a docstring for the function at the cursor
+        position initiated via a keyboard shortcut.
+        
+        @param cursorPosition position of the cursor (line and index)
+        @type tuple of (int, int)
+        """
+        # just do nothing in the base class
+        return
+    
     def getDocstringType(self):
         """
         Public method to determine the docstring type to be generated.
--- a/eric6/QScintilla/DocstringGenerator/EricdocGenerator.py	Fri Jan 22 16:55:43 2021 +0100
+++ b/eric6/QScintilla/DocstringGenerator/EricdocGenerator.py	Sat Jan 23 12:02:52 2021 +0100
@@ -21,17 +21,16 @@
     @return list of docstring lines
     @rtype str
     """
+    # __IGNORE_WARNING_D202__
     lines = []
     
     # create a basic/partial function description
-    descrComplete = False
     if functionInfo.functionType == "classmethod":
         descr = "Class method "
     elif functionInfo.functionType == "staticmethod":
         descr = "Static method "
     elif functionInfo.functionType == "constructor":
         descr = "Constructor"
-        descrComplete = True
     else:
         if functionInfo.visibility == "public":
             descr = "Public "
@@ -61,8 +60,6 @@
                 descr = "Slot "
             else:
                 descr = "Function "
-    if not descrComplete:
-        descr += "DESCRIPTION"
     lines.append(descr)
     
     # remove 'self', 'this' or 'cls' from arguments list
--- a/eric6/QScintilla/DocstringGenerator/GoogledocGenerator.py	Fri Jan 22 16:55:43 2021 +0100
+++ b/eric6/QScintilla/DocstringGenerator/GoogledocGenerator.py	Sat Jan 23 12:02:52 2021 +0100
@@ -24,10 +24,11 @@
     @return list of docstring lines
     @rtype str
     """
+    # __IGNORE_WARNING_D202__
     lines = []
     
     # function description
-    lines.append("DESCRIPTION")
+    lines.append("")
     
     # remove 'self', 'this' or 'cls' from arguments list
     if (
--- a/eric6/QScintilla/DocstringGenerator/NumpydocGenerator.py	Fri Jan 22 16:55:43 2021 +0100
+++ b/eric6/QScintilla/DocstringGenerator/NumpydocGenerator.py	Sat Jan 23 12:02:52 2021 +0100
@@ -24,10 +24,11 @@
     @return list of docstring lines
     @rtype str
     """
+    # __IGNORE_WARNING_D202__
     lines = []
     
     # function description
-    lines.append("DESCRIPTION")
+    lines.append("")
     
     # remove 'self', 'this' or 'cls' from arguments list
     if (
--- a/eric6/QScintilla/DocstringGenerator/PyDocstringGenerator.py	Fri Jan 22 16:55:43 2021 +0100
+++ b/eric6/QScintilla/DocstringGenerator/PyDocstringGenerator.py	Sat Jan 23 12:02:52 2021 +0100
@@ -106,15 +106,73 @@
         """
         if fromStart:
             self.__functionStartLine = cursorPosition[0]
-            docstring, insertPos = self.__generateDocstringFromStart()
+            docstring, insertPos, newCursorLine = (
+                self.__generateDocstringFromStart()
+            )
         else:
-            docstring, insertPos = self.__generateDocstringFromBelow(
-                cursorPosition)
+            docstring, insertPos, newCursorLine = (
+                self.__generateDocstringFromBelow(cursorPosition)
+            )
         
         if docstring:
             self.editor.beginUndoAction()
             self.editor.insertAt(docstring, *insertPos)
+            
+            if not fromStart:
+                # correct triple quote indentation if neccessary
+                functionIndent = self.editor.indentation(
+                    self.__functionStartLine)
+                quoteIndent = self.editor.indentation(insertPos[0])
+                
+                # step 1: unindent quote line until indentation is zero
+                while quoteIndent > 0:
+                    self.editor.unindent(insertPos[0])
+                    quoteIndent = self.editor.indentation(insertPos[0])
+                
+                # step 2: indent quote line until indentation is one greater
+                # than function definition line
+                while quoteIndent <= functionIndent:
+                    self.editor.indent(insertPos[0])
+                    quoteIndent = self.editor.indentation(insertPos[0])
+            
             self.editor.endUndoAction()
+            self.editor.setCursorPosition(
+                newCursorLine, len(self.editor.text(newCursorLine)) - 1
+            )
+    
+    def insertDocstringFromShortcut(self, cursorPosition):
+        """
+        Public method to insert a docstring for the function at the cursor
+        position initiated via a keyboard shortcut.
+        
+        @param cursorPosition position of the cursor (line and index)
+        @type tuple of (int, int)
+        """
+        result = self.__getFunctionDefinitionFromBelow(cursorPosition)
+        if result is not None:
+            # cursor is on the line after the function definition
+            cline = cursorPosition[0] - 1
+            while not self.isFunctionStart(self.editor.text(cline)):
+                cline -= 1
+            self.__functionStartLine = cline
+        elif self.isFunctionStart(self.editor.text(cursorPosition[0])):
+            # cursor is on the start line of the function definition
+            self.__functionStartLine = cursorPosition[0]
+        else:
+            # neither after the function definition nor at the start
+            # just do nothing
+            return
+        
+        docstring, insertPos, newCursorLine = (
+            self.__generateDocstringFromStart()
+        )
+        if docstring:
+            self.editor.beginUndoAction()
+            self.editor.insertAt(docstring, *insertPos)
+            self.editor.endUndoAction()
+            self.editor.setCursorPosition(
+                newCursorLine, len(self.editor.text(newCursorLine)) - 1
+            )
     
     def __getIndentationInsertString(self, text):
         """
@@ -161,16 +219,18 @@
             if docstringList:
                 if self.getDocstringType() == "ericdoc":
                     docstringList.insert(0, self.__quote3)
+                    newCursorLine = insertLine + 1
                 else:
                     docstringList[0] = self.__quote3 + docstringList[0]
+                    newCursorLine = insertLine
                 docstringList.append(self.__quote3)
                 return (
                     indentation +
                     "{0}{1}".format(sep, indentation).join(docstringList) +
                     sep
-                ), (insertLine, 0)
+                ), (insertLine, 0), newCursorLine
         
-        return "", (0, 0)
+        return "", (0, 0), 0
     
     def __getFunctionDefinitionFromStart(self):
         """
@@ -267,19 +327,24 @@
                 if self.__isTripleQuotesStart(lineTextToCursor):
                     if self.getDocstringType() == "ericdoc":
                         docstringList.insert(0, "")
+                        newCursorLine = cursorPosition[0] + 1
+                    else:
+                        newCursorLine = cursorPosition[0]
                     docstringList.append("")
                 else:
                     if self.getDocstringType() == "ericdoc":
                         docstringList.insert(0, self.__quote3)
+                        newCursorLine = cursorPosition[0] + 1
                     else:
                         docstringList[0] = self.__quote3 + docstringList[0]
+                        newCursorLine = cursorPosition[0]
                     docstringList.append(self.__quote3)
                 docstring = (
                     "{0}{1}".format(sep, indentation).join(docstringList)
                 )
-                return docstring, cursorPosition
+                return docstring, cursorPosition, newCursorLine
         
-        return "", (0, 0)
+        return "", (0, 0), 0
     
     def __getFunctionDefinitionFromBelow(self, cursorPosition):
         """
@@ -313,6 +378,8 @@
             
             if self.isFunctionStart(text):
                 # start of function definition reached
+                self.__functionStartLine = lineNo
+                
                 # check, if function is decorated with a supported one
                 if lineNo > 0:
                     decoratorLine = self.editor.text(lineNo - 1)
--- a/eric6/QScintilla/DocstringGenerator/SphinxdocGenerator.py	Fri Jan 22 16:55:43 2021 +0100
+++ b/eric6/QScintilla/DocstringGenerator/SphinxdocGenerator.py	Sat Jan 23 12:02:52 2021 +0100
@@ -22,10 +22,11 @@
     @return list of docstring lines
     @rtype str
     """
+    # __IGNORE_WARNING_D202__
     lines = []
     
     # function description
-    lines.append("DESCRIPTION")
+    lines.append("")
     
     # remove 'self', 'this' or 'cls' from arguments list
     if (
--- a/eric6/QScintilla/Editor.py	Fri Jan 22 16:55:43 2021 +0100
+++ b/eric6/QScintilla/Editor.py	Sat Jan 23 12:02:52 2021 +0100
@@ -825,6 +825,10 @@
                 self.tr('Box Comment'),
                 self.boxCommentLineOrSelection)
             self.menu.addSeparator()
+            self.menuActs["Docstring"] = self.menu.addAction(
+                self.tr("Generate Docstring"),
+                self.__insertDocstring)
+            self.menu.addSeparator()
             self.menu.addAction(
                 self.tr('Select to brace'), self.selectToMatchingBrace)
             self.menu.addAction(self.tr('Select all'), self.__selectAll)
@@ -846,10 +850,6 @@
         self.menuActs["SpellCheckLanguages"] = self.menu.addMenu(
             self.spellLanguagesMenu)
         self.menu.addSeparator()
-        self.menuActs["Docstring"] = self.menu.addAction(
-            self.tr("Insert Docstring"),
-            self.__insertDocstring)
-        self.menu.addSeparator()
         self.menu.addAction(
             self.tr('Shorten empty lines'), self.shortenEmptyLines)
         self.menu.addSeparator()
@@ -8664,6 +8664,17 @@
         
         return self.__docstringGenerator
     
+    def insertDocstring(self):
+        """
+        Public method to generate and insert a docstring for the function under
+        the cursor.
+        
+        Note: This method is called via a keyboard shortcut or through the
+        global 'Edit' menu.
+        """
+        generator = self.getDocstringGenerator()
+        generator.insertDocstringFromShortcut(self.getCursorPosition())
+    
     @pyqtSlot()
     def __insertDocstring(self):
         """
--- a/eric6/ViewManager/ViewManager.py	Fri Jan 22 16:55:43 2021 +0100
+++ b/eric6/ViewManager/ViewManager.py	Sat Jan 23 12:02:52 2021 +0100
@@ -1465,6 +1465,28 @@
         self.sortAct.triggered.connect(self.__editSortSelectedLines)
         self.editActions.append(self.sortAct)
         
+        self.docstringAct = E5Action(
+            QCoreApplication.translate('ViewManager', 'Generate Docstring'),
+            QCoreApplication.translate('ViewManager', 'Generate Docstring'),
+            QKeySequence(QCoreApplication.translate(
+                'ViewManager', "Ctrl+Alt+D", "Edit|Generate Docstring")),
+            0,
+            self.editActGrp, 'vm_edit_generate_docstring')
+        self.docstringAct.setStatusTip(QCoreApplication.translate(
+            'ViewManager',
+            'Generate a docstring for the current function/method'))
+        self.docstringAct.setWhatsThis(QCoreApplication.translate(
+            'ViewManager',
+            """<b>Generate Docstring</b>"""
+            """<p>Generate a docstring for the current function/method if"""
+            """ the cursor is placed on the line starting the function"""
+            """ definition or on the line thereafter. The docstring is"""
+            """ inserted at the appropriate position and the cursor is"""
+            """ placed at the end of the description line.</p>"""
+        ))
+        self.docstringAct.triggered.connect(self.__editInsertDocstring)
+        self.editActions.append(self.docstringAct)
+        
         self.editActGrp.setEnabled(False)
         self.copyActGrp.setEnabled(False)
         
@@ -2805,6 +2827,8 @@
         menu.addAction(self.streamCommentAct)
         menu.addAction(self.boxCommentAct)
         menu.addSeparator()
+        menu.addAction(self.docstringAct)
+        menu.addSeparator()
         menu.addAction(self.editUpperCaseAct)
         menu.addAction(self.editLowerCaseAct)
         menu.addAction(self.sortAct)
@@ -7097,6 +7121,14 @@
         if editor:
             editor.sortLines()
     
+    def __editInsertDocstring(self):
+        """
+        Private method to insert a docstring.
+        """
+        editor = self.activeWindow()
+        if editor:
+            editor.insertDocstring()
+    
     def showEditorInfo(self, editor):
         """
         Public method to show some information for a given editor.
--- a/eric6/i18n/eric6_cs.ts	Fri Jan 22 16:55:43 2021 +0100
+++ b/eric6/i18n/eric6_cs.ts	Sat Jan 23 12:02:52 2021 +0100
@@ -11415,17 +11415,17 @@
         <translation>Obdélníkový komentář</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="828"/>
+        <location filename="../QScintilla/Editor.py" line="832"/>
         <source>Select to brace</source>
         <translation>Vybrat až po závorku</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="830"/>
+        <location filename="../QScintilla/Editor.py" line="834"/>
         <source>Select all</source>
         <translation>Vybrat vše</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="831"/>
+        <location filename="../QScintilla/Editor.py" line="835"/>
         <source>Deselect all</source>
         <translation>Zrušit celý výběr</translation>
     </message>
@@ -11970,7 +11970,7 @@
         <translation>Zatrhnout kontrolu...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="839"/>
+        <location filename="../QScintilla/Editor.py" line="843"/>
         <source>Check spelling of selection...</source>
         <translation>Zatrhnout výběr kontroly...</translation>
     </message>
@@ -11985,7 +11985,7 @@
         <translation>Ignorovat vše</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="843"/>
+        <location filename="../QScintilla/Editor.py" line="847"/>
         <source>Remove from dictionary</source>
         <translation>Odebrat ze slovníku</translation>
     </message>
@@ -12280,12 +12280,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="849"/>
-        <source>Insert Docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8715"/>
+        <location filename="../QScintilla/Editor.py" line="8726"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
@@ -82620,7 +82615,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2776"/>
+        <location filename="../ViewManager/ViewManager.py" line="2798"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
@@ -82680,1372 +82675,1372 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Move left one character</source>
         <translation>Posun o jeden znak doleva</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1494"/>
+        <location filename="../ViewManager/ViewManager.py" line="1516"/>
         <source>Move right one character</source>
         <translation>Posun o jeden znak doprava</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1494"/>
+        <location filename="../ViewManager/ViewManager.py" line="1516"/>
         <source>Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1508"/>
+        <location filename="../ViewManager/ViewManager.py" line="1530"/>
         <source>Move up one line</source>
         <translation>Posun o jeden řádek nahoru</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1508"/>
+        <location filename="../ViewManager/ViewManager.py" line="1530"/>
         <source>Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1520"/>
+        <location filename="../ViewManager/ViewManager.py" line="1542"/>
         <source>Move down one line</source>
         <translation>Posun o jeden řádek dolu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1520"/>
+        <location filename="../ViewManager/ViewManager.py" line="1542"/>
         <source>Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1532"/>
+        <location filename="../ViewManager/ViewManager.py" line="1554"/>
         <source>Move left one word part</source>
         <translation>Posun o jednu část slova doleva</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1566"/>
+        <location filename="../ViewManager/ViewManager.py" line="1588"/>
         <source>Alt+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1546"/>
+        <location filename="../ViewManager/ViewManager.py" line="1568"/>
         <source>Move right one word part</source>
         <translation>Posun o jednu část slova doprava</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2446"/>
+        <location filename="../ViewManager/ViewManager.py" line="2468"/>
         <source>Alt+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1560"/>
+        <location filename="../ViewManager/ViewManager.py" line="1582"/>
         <source>Move left one word</source>
         <translation>Posun o jedno slovo doleva</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1611"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Ctrl+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1575"/>
+        <location filename="../ViewManager/ViewManager.py" line="1597"/>
         <source>Move right one word</source>
         <translation>Posun o jedno slovo doprava</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2200"/>
+        <location filename="../ViewManager/ViewManager.py" line="2222"/>
         <source>Ctrl+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2401"/>
+        <location filename="../ViewManager/ViewManager.py" line="2423"/>
         <source>Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1614"/>
+        <location filename="../ViewManager/ViewManager.py" line="1636"/>
         <source>Alt+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2416"/>
+        <location filename="../ViewManager/ViewManager.py" line="2438"/>
         <source>End</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1637"/>
+        <location filename="../ViewManager/ViewManager.py" line="1659"/>
         <source>Scroll view down one line</source>
         <translation>Posun pohledu  jeden řádek dolů</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1749"/>
         <source>Ctrl+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1649"/>
+        <location filename="../ViewManager/ViewManager.py" line="1671"/>
         <source>Scroll view up one line</source>
         <translation>Posun pohledu o jeden řádek nahoru</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1710"/>
+        <location filename="../ViewManager/ViewManager.py" line="1732"/>
         <source>Ctrl+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1660"/>
+        <location filename="../ViewManager/ViewManager.py" line="1682"/>
         <source>Move up one paragraph</source>
         <translation>Posun na předchozí odstavec</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1660"/>
+        <location filename="../ViewManager/ViewManager.py" line="1682"/>
         <source>Alt+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1669"/>
+        <location filename="../ViewManager/ViewManager.py" line="1691"/>
         <source>Move down one paragraph</source>
         <translation>Posun na následující odstavec</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1669"/>
+        <location filename="../ViewManager/ViewManager.py" line="1691"/>
         <source>Alt+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1681"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>Move up one page</source>
         <translation>Posun na předchozí stranu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1681"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>PgUp</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1690"/>
+        <location filename="../ViewManager/ViewManager.py" line="1712"/>
         <source>Move down one page</source>
         <translation>Posun na následující stranu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1690"/>
+        <location filename="../ViewManager/ViewManager.py" line="1712"/>
         <source>PgDown</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1713"/>
+        <location filename="../ViewManager/ViewManager.py" line="1735"/>
         <source>Ctrl+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1730"/>
+        <location filename="../ViewManager/ViewManager.py" line="1752"/>
         <source>Ctrl+End</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Indent one level</source>
         <translation>Odsadit o jednu úroveň</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Tab</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1745"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Unindent one level</source>
         <translation>Zrušit odsazení o jednu úroveň</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1745"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Shift+Tab</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1755"/>
+        <location filename="../ViewManager/ViewManager.py" line="1777"/>
         <source>Extend selection left one character</source>
         <translation>Rozšířit výběr o jeden znak vlevo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1755"/>
+        <location filename="../ViewManager/ViewManager.py" line="1777"/>
         <source>Shift+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1770"/>
+        <location filename="../ViewManager/ViewManager.py" line="1792"/>
         <source>Extend selection right one character</source>
         <translation>Rozšířit výběr o jeden znak vpravo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1770"/>
+        <location filename="../ViewManager/ViewManager.py" line="1792"/>
         <source>Shift+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1785"/>
+        <location filename="../ViewManager/ViewManager.py" line="1807"/>
         <source>Extend selection up one line</source>
         <translation>Rozšířit výběr o řádku nahoru</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1785"/>
+        <location filename="../ViewManager/ViewManager.py" line="1807"/>
         <source>Shift+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1800"/>
+        <location filename="../ViewManager/ViewManager.py" line="1822"/>
         <source>Extend selection down one line</source>
         <translation>Rozšířit výběr o jednu řádku dolů</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1800"/>
+        <location filename="../ViewManager/ViewManager.py" line="1822"/>
         <source>Shift+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1815"/>
+        <location filename="../ViewManager/ViewManager.py" line="1837"/>
         <source>Extend selection left one word part</source>
         <translation>Rozšířit výběr o jednu část slova vlevo</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="1873"/>
+        <source>Alt+Shift+Left</source>
+        <translation></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="1851"/>
-        <source>Alt+Shift+Left</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1829"/>
         <source>Extend selection right one word part</source>
         <translation>Rozšířit výběr o jednu část slova vpravo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2461"/>
+        <location filename="../ViewManager/ViewManager.py" line="2483"/>
         <source>Alt+Shift+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1843"/>
+        <location filename="../ViewManager/ViewManager.py" line="1865"/>
         <source>Extend selection left one word</source>
         <translation>Rozšířit výběr o jedno slovo vlevo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2555"/>
+        <location filename="../ViewManager/ViewManager.py" line="2577"/>
         <source>Ctrl+Shift+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1860"/>
+        <location filename="../ViewManager/ViewManager.py" line="1882"/>
         <source>Extend selection right one word</source>
         <translation>Rozšířit výběr o jedno slovo vpravo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2217"/>
+        <location filename="../ViewManager/ViewManager.py" line="2239"/>
         <source>Ctrl+Shift+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1889"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Shift+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2321"/>
+        <location filename="../ViewManager/ViewManager.py" line="2343"/>
         <source>Alt+Shift+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1906"/>
+        <location filename="../ViewManager/ViewManager.py" line="1928"/>
         <source>Shift+End</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1912"/>
+        <location filename="../ViewManager/ViewManager.py" line="1934"/>
         <source>Extend selection up one paragraph</source>
         <translation>Rozšířit výběr o předchozí odstavec</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1912"/>
+        <location filename="../ViewManager/ViewManager.py" line="1934"/>
         <source>Alt+Shift+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1925"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Extend selection down one paragraph</source>
         <translation>Rozšířit výběr o následující odstavec</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1925"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Alt+Shift+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Extend selection up one page</source>
         <translation>Rozšířit výběr na předchozí stranu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Shift+PgUp</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1950"/>
+        <location filename="../ViewManager/ViewManager.py" line="1972"/>
         <source>Extend selection down one page</source>
         <translation>Rozšířit výběr na následující stranu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1950"/>
+        <location filename="../ViewManager/ViewManager.py" line="1972"/>
         <source>Shift+PgDown</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1977"/>
+        <location filename="../ViewManager/ViewManager.py" line="1999"/>
         <source>Ctrl+Shift+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2016"/>
         <source>Ctrl+Shift+End</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2000"/>
+        <location filename="../ViewManager/ViewManager.py" line="2022"/>
         <source>Delete previous character</source>
         <translation>Smazat předchozí znak</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2000"/>
+        <location filename="../ViewManager/ViewManager.py" line="2022"/>
         <source>Backspace</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2012"/>
+        <location filename="../ViewManager/ViewManager.py" line="2034"/>
         <source>Shift+Backspace</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2031"/>
+        <location filename="../ViewManager/ViewManager.py" line="2053"/>
         <source>Delete current character</source>
         <translation>Smazat aktuální znak</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2031"/>
+        <location filename="../ViewManager/ViewManager.py" line="2053"/>
         <source>Del</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2045"/>
+        <location filename="../ViewManager/ViewManager.py" line="2067"/>
         <source>Delete word to left</source>
         <translation>Smazat slovo doleva</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2045"/>
+        <location filename="../ViewManager/ViewManager.py" line="2067"/>
         <source>Ctrl+Backspace</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2056"/>
+        <location filename="../ViewManager/ViewManager.py" line="2078"/>
         <source>Delete word to right</source>
         <translation>Smazat slovo doprava</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2056"/>
+        <location filename="../ViewManager/ViewManager.py" line="2078"/>
         <source>Ctrl+Del</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2066"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Delete line to left</source>
         <translation>Smazat řádku doleva</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2066"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2077"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Delete line to right</source>
         <translation>Smazat řádku doprava</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2086"/>
+        <location filename="../ViewManager/ViewManager.py" line="2108"/>
         <source>Ctrl+Shift+Del</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Insert new line</source>
         <translation>Vložit nový řádek</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Return</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Enter</source>
         <translation>Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2115"/>
-        <source>Delete current line</source>
-        <translation>Smazat aktuální řádek</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2115"/>
-        <source>Ctrl+Shift+L</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2126"/>
-        <source>Duplicate current line</source>
-        <translation>Duplikovat aktuální řádek</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2126"/>
-        <source>Ctrl+D</source>
-        <translation></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2137"/>
-        <source>Swap current and previous lines</source>
-        <translation>Prohodit aktuální řádek s předchozím</translation>
+        <source>Delete current line</source>
+        <translation>Smazat aktuální řádek</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="2137"/>
+        <source>Ctrl+Shift+L</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <source>Duplicate current line</source>
+        <translation>Duplikovat aktuální řádek</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <source>Ctrl+D</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2159"/>
+        <source>Swap current and previous lines</source>
+        <translation>Prohodit aktuální řádek s předchozím</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2159"/>
         <source>Ctrl+T</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2160"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Cut current line</source>
         <translation>Vyjmout aktuální řádek</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2160"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Alt+Shift+L</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2170"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Copy current line</source>
         <translation>Kopírovat aktuální řádek</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2170"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Ctrl+Shift+T</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
-        <source>Toggle insert/overtype</source>
-        <translation>Přepnout vkládání/přepisování</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
-        <source>Ins</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2745"/>
-        <source>Convert selection to lower case</source>
-        <translation>Převést výběr na minusky</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2745"/>
-        <source>Alt+Shift+U</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2757"/>
-        <source>Convert selection to upper case</source>
-        <translation>Převést výběr na verzálky</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2757"/>
-        <source>Ctrl+Shift+U</source>
-        <translation></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2203"/>
+        <source>Toggle insert/overtype</source>
+        <translation>Přepnout vkládání/přepisování</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2203"/>
+        <source>Ins</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2767"/>
+        <source>Convert selection to lower case</source>
+        <translation>Převést výběr na minusky</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2767"/>
+        <source>Alt+Shift+U</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2779"/>
+        <source>Convert selection to upper case</source>
+        <translation>Převést výběr na verzálky</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2779"/>
+        <source>Ctrl+Shift+U</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2225"/>
         <source>Alt+End</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2223"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <source>Formfeed</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2232"/>
+        <location filename="../ViewManager/ViewManager.py" line="2254"/>
         <source>Escape</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2232"/>
+        <location filename="../ViewManager/ViewManager.py" line="2254"/>
         <source>Esc</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2241"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Extend rectangular selection down one line</source>
         <translation>Rozšířit obdélníkový výběr o řádek dolů</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2241"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Alt+Ctrl+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2257"/>
+        <location filename="../ViewManager/ViewManager.py" line="2279"/>
         <source>Extend rectangular selection up one line</source>
         <translation>Rozšířit obdélníkový výběr o řádek nahoru</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2257"/>
+        <location filename="../ViewManager/ViewManager.py" line="2279"/>
         <source>Alt+Ctrl+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2272"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Extend rectangular selection left one character</source>
         <translation>Rozšířit obdélníkový výběr o jeden znak vlevo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2272"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Alt+Ctrl+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2290"/>
+        <location filename="../ViewManager/ViewManager.py" line="2312"/>
         <source>Extend rectangular selection right one character</source>
         <translation>Rozšířit obdélníkový výběr o jeden znak vpravo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2290"/>
+        <location filename="../ViewManager/ViewManager.py" line="2312"/>
         <source>Alt+Ctrl+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2346"/>
+        <location filename="../ViewManager/ViewManager.py" line="2368"/>
         <source>Extend rectangular selection up one page</source>
         <translation>Rozšířit obdélníkový výběr o předchozí stranu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2361"/>
+        <location filename="../ViewManager/ViewManager.py" line="2383"/>
         <source>Extend rectangular selection down one page</source>
         <translation>Rozšířit obdélníkový výběr o následující stranu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2379"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Duplicate current selection</source>
         <translation>Duplikovat aktuální výběr</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2379"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Ctrl+Shift+D</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3352"/>
+        <location filename="../ViewManager/ViewManager.py" line="3376"/>
         <source>&amp;Search</source>
         <translation>V&amp;yhledat</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2786"/>
+        <location filename="../ViewManager/ViewManager.py" line="2808"/>
         <source>&amp;Edit</source>
         <translation>&amp;Edit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2843"/>
+        <location filename="../ViewManager/ViewManager.py" line="2867"/>
         <source>Edit</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3447"/>
+        <location filename="../ViewManager/ViewManager.py" line="3471"/>
         <source>Search</source>
         <translation>Vyhledat</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2875"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>&amp;Search...</source>
         <translation>V&amp;yhledat...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2875"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2883"/>
+        <location filename="../ViewManager/ViewManager.py" line="2907"/>
         <source>Search for a text</source>
         <translation>Hledat text</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2885"/>
+        <location filename="../ViewManager/ViewManager.py" line="2909"/>
         <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Hledat&lt;/b&gt;
 &lt;p&gt;Hledat text v aktuálním editoru. Zobrazí se dialogové okno, do kterého se zadá hledaný text a další nastavení.&lt;p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Search next</source>
         <translation>Hledat text</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Search &amp;next</source>
         <translation>Hledat &amp;další</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Search previous</source>
         <translation>Hledat předchozí</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Search &amp;previous</source>
         <translation>Hledat &amp;předchozí</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>Replace</source>
         <translation>Nahradit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>&amp;Replace...</source>
         <translation>Nah&amp;radit...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3008"/>
+        <location filename="../ViewManager/ViewManager.py" line="3032"/>
         <source>Replace some text</source>
         <translation>Hledat nějaký text</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3010"/>
+        <location filename="../ViewManager/ViewManager.py" line="3034"/>
         <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nahradit&lt;/b&gt;
 &lt;p&gt;Vyhledá va ktuálním editoru text a nahradí jej. Je zobrazeno dialogové okno, kde se zadá text, který se má nahradit, nový text a nastavení pro vyhledávání a nahrazení.&lt;p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3387"/>
+        <location filename="../ViewManager/ViewManager.py" line="3411"/>
         <source>Quicksearch</source>
         <translation>Rychlé hledání</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3088"/>
+        <location filename="../ViewManager/ViewManager.py" line="3112"/>
         <source>&amp;Quicksearch</source>
         <translation>Rychlé hl&amp;edání</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3088"/>
+        <location filename="../ViewManager/ViewManager.py" line="3112"/>
         <source>Ctrl+Shift+K</source>
         <comment>Search|Quicksearch</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3096"/>
+        <location filename="../ViewManager/ViewManager.py" line="3120"/>
         <source>Perform a quicksearch</source>
         <translation>Provést rychlé hledání</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <source>Quicksearch backwards</source>
         <translation>Rychlé hledání zpět</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <source>Quicksearch &amp;backwards</source>
         <translation>Rychlé hledání &amp;zpět</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <source>Ctrl+Shift+J</source>
         <comment>Search|Quicksearch backwards</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3119"/>
+        <location filename="../ViewManager/ViewManager.py" line="3143"/>
         <source>Perform a quicksearch backwards</source>
         <translation>Provést rychlé hledání zpět</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Quicksearch extend</source>
         <translation>Rychlé hledání rozšířit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Quicksearch e&amp;xtend</source>
         <translation>Rychlé hl&amp;edání rozšířit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Ctrl+Shift+H</source>
         <comment>Search|Quicksearch extend</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3139"/>
+        <location filename="../ViewManager/ViewManager.py" line="3163"/>
         <source>Extend the quicksearch to the end of the current word</source>
         <translation>Rozšířit rychlé hledání na konec aktuálního slova</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3142"/>
+        <location filename="../ViewManager/ViewManager.py" line="3166"/>
         <source>&lt;b&gt;Quicksearch extend&lt;/b&gt;&lt;p&gt;This extends the quicksearch text to the end of the word currently found.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rychlé hlednání rozšířit&lt;/b&gt;
 &lt;p&gt;Rychlé hledání se rozšíří na konec aktuálně nalezeného slova.&lt;p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3160"/>
+        <location filename="../ViewManager/ViewManager.py" line="3184"/>
         <source>Goto Line</source>
         <translation>Jít na řádek</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <location filename="../ViewManager/ViewManager.py" line="3176"/>
         <source>&amp;Goto Line...</source>
         <translation>&amp;Jít na řádek...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <location filename="../ViewManager/ViewManager.py" line="3176"/>
         <source>Ctrl+G</source>
         <comment>Search|Goto Line</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3162"/>
+        <location filename="../ViewManager/ViewManager.py" line="3186"/>
         <source>&lt;b&gt;Goto Line&lt;/b&gt;&lt;p&gt;Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Jít na řádek&lt;/b&gt;
 &lt;p&gt;Jít na určený řádek. Zobrazí se dialogové okno, kde se zadá číslo požadovaného řádku.&lt;p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <location filename="../ViewManager/ViewManager.py" line="3203"/>
         <source>Goto Brace</source>
         <translation>Jít na závorku</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <location filename="../ViewManager/ViewManager.py" line="3195"/>
         <source>Goto &amp;Brace</source>
         <translation>Jít na závork&amp;u</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <location filename="../ViewManager/ViewManager.py" line="3195"/>
         <source>Ctrl+L</source>
         <comment>Search|Goto Brace</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3181"/>
+        <location filename="../ViewManager/ViewManager.py" line="3205"/>
         <source>&lt;b&gt;Goto Brace&lt;/b&gt;&lt;p&gt;Go to the matching brace in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Jít na závorku&lt;/b&gt;
 &lt;p&gt;Jíta na závoku, která patří do páru s tou, na které se nachází kurzor.&lt;p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Search in Files</source>
         <translation>Hledat v souborech</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Search in &amp;Files...</source>
         <translation>&amp;Hledat v souborech...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3267"/>
+        <location filename="../ViewManager/ViewManager.py" line="3291"/>
         <source>Search for a text in files</source>
         <translation>Hledat text v souborech</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3269"/>
+        <location filename="../ViewManager/ViewManager.py" line="3293"/>
         <source>&lt;b&gt;Search in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Hledat v souborech&lt;/b&gt;
 &lt;p&gt;Hledat text v souborech v adresářích nebo projektu. Je zobrazeno dialogové okno, do kterého se zadá hledaný text a nastavení a ve kterém se zobrazuje výsledek hledání.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom in</source>
         <translation>Přiblížit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom &amp;in</source>
         <translation>Př&amp;iblížit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3496"/>
+        <location filename="../ViewManager/ViewManager.py" line="3520"/>
         <source>Zoom in on the text</source>
         <translation>Zvětšovací lupa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3498"/>
+        <location filename="../ViewManager/ViewManager.py" line="3522"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Přiblížit&lt;/b&gt;&lt;p&gt;Přiblížit text. Text bude větší.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom out</source>
         <translation>Oddálit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom &amp;out</source>
         <translation>&amp;Oddálit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3515"/>
+        <location filename="../ViewManager/ViewManager.py" line="3539"/>
         <source>Zoom out on the text</source>
         <translation>Zmenšovací lupa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3517"/>
+        <location filename="../ViewManager/ViewManager.py" line="3541"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Oddálit&lt;/b&gt;&lt;p&gt;Lupa na oddálení textu. Text bude menší.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>Zoom</source>
         <translation>Lupa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>&amp;Zoom</source>
         <translation>&amp;Lupa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3552"/>
+        <location filename="../ViewManager/ViewManager.py" line="3576"/>
         <source>Zoom the text</source>
         <translation>Lupa na text</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3554"/>
+        <location filename="../ViewManager/ViewManager.py" line="3578"/>
         <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Lupa&lt;/b&gt;&lt;p&gt;Lupa na text. Otevře se dialogové okno kde se zadá požadovaná hodnota zvětšení/zmenšení.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3567"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Toggle all folds</source>
         <translation>Složit/rozložit všechna skládání</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <location filename="../ViewManager/ViewManager.py" line="3587"/>
         <source>&amp;Toggle all folds</source>
         <translation type="unfinished">Složit/rozložit všechn&amp;a skládání</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3569"/>
+        <location filename="../ViewManager/ViewManager.py" line="3593"/>
         <source>&lt;b&gt;Toggle all folds&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Složit/rozložit všechna skládání&lt;/b&gt;&lt;p&gt;Složí/rozloží všechna skládání v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <location filename="../ViewManager/ViewManager.py" line="3607"/>
         <source>Toggle all folds (including children)</source>
         <translation>Složit/rozložit všechna skládání (i s podsložkami)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3577"/>
-        <source>Toggle all &amp;folds (including children)</source>
-        <translation>Složit/rozložit všechna &amp;skládání (i s podsložkami)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3585"/>
-        <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Složit/rozložit všechna skládání (i s podsložkami)&lt;/b&gt;&lt;p&gt;Složí nebo rozloží všechna skládání i s podsložkami.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3599"/>
-        <source>Toggle current fold</source>
-        <translation>Složit/rozložit aktuální složený blok</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3595"/>
-        <source>Toggle &amp;current fold</source>
-        <translation>Složit/rozložit aktuální složený &amp;blok</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3601"/>
+        <source>Toggle all &amp;folds (including children)</source>
+        <translation>Složit/rozložit všechna &amp;skládání (i s podsložkami)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3609"/>
+        <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Složit/rozložit všechna skládání (i s podsložkami)&lt;/b&gt;&lt;p&gt;Složí nebo rozloží všechna skládání i s podsložkami.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3623"/>
+        <source>Toggle current fold</source>
+        <translation>Složit/rozložit aktuální složený blok</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3619"/>
+        <source>Toggle &amp;current fold</source>
+        <translation>Složit/rozložit aktuální složený &amp;blok</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3625"/>
         <source>&lt;b&gt;Toggle current fold&lt;/b&gt;&lt;p&gt;Toggle the folds of the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Složit/rozložit aktuální složený blok&lt;/b&gt;&lt;p&gt;Složí nebo rozloží aktuální složený blok v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3631"/>
+        <location filename="../ViewManager/ViewManager.py" line="3655"/>
         <source>Remove all highlights</source>
         <translation>Odebrat všechna zvýraznění</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3633"/>
+        <location filename="../ViewManager/ViewManager.py" line="3657"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Odebrat všechna zvýraznění&lt;/b&gt;&lt;p&gt;Odebrat zvýraznění ve všech editorech.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3703"/>
         <source>Split view</source>
         <translation>Rozdělit pohled</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3703"/>
         <source>&amp;Split view</source>
         <translation>&amp;Rozdělit pohled</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3684"/>
+        <location filename="../ViewManager/ViewManager.py" line="3708"/>
         <source>Add a split to the view</source>
         <translation>Přidat další rozdělení pohledu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3686"/>
+        <location filename="../ViewManager/ViewManager.py" line="3710"/>
         <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rozdělit pohled&lt;/b&gt;&lt;p&gt;Přidá další okno na aktuální pohled.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3694"/>
+        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>Arrange horizontally</source>
         <translation>Uspořádat horizontálně</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3694"/>
+        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>Arrange &amp;horizontally</source>
         <translation>Uspořádat &amp;horizontálně</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3698"/>
+        <location filename="../ViewManager/ViewManager.py" line="3722"/>
         <source>Arrange the splitted views horizontally</source>
         <translation>Uspořádat rozdělené pohledy horizontálně</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3700"/>
-        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Uspořádat horizontálně&lt;/b&gt;&lt;p&gt;Uspořádat rozdělené pohledy horizontálně.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3709"/>
-        <source>Remove split</source>
-        <translation>Odebrat rozdělený pohled</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3709"/>
-        <source>&amp;Remove split</source>
-        <translation>Odebra&amp;t rozdělený pohled</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3714"/>
-        <source>Remove the current split</source>
-        <translation>Odebrat aktuální rozdělení pohledu</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3716"/>
-        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Odebrat rozdělený pohled&lt;/b&gt;&lt;p&gt;Odebrat aktuální rozdělený pohled.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3724"/>
-        <source>Next split</source>
-        <translation>Další rozdělený pohled</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3724"/>
-        <source>&amp;Next split</source>
-        <translation>Další rozděle&amp;ný pohled</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3724"/>
-        <source>Ctrl+Alt+N</source>
-        <comment>View|Next split</comment>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3731"/>
-        <source>Move to the next split</source>
-        <translation>Posun na další rozdělený pohled</translation>
+        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Uspořádat horizontálně&lt;/b&gt;&lt;p&gt;Uspořádat rozdělené pohledy horizontálně.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3733"/>
+        <source>Remove split</source>
+        <translation>Odebrat rozdělený pohled</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3733"/>
+        <source>&amp;Remove split</source>
+        <translation>Odebra&amp;t rozdělený pohled</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3738"/>
+        <source>Remove the current split</source>
+        <translation>Odebrat aktuální rozdělení pohledu</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3740"/>
+        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Odebrat rozdělený pohled&lt;/b&gt;&lt;p&gt;Odebrat aktuální rozdělený pohled.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
+        <source>Next split</source>
+        <translation>Další rozdělený pohled</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
+        <source>&amp;Next split</source>
+        <translation>Další rozděle&amp;ný pohled</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
+        <source>Ctrl+Alt+N</source>
+        <comment>View|Next split</comment>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3755"/>
+        <source>Move to the next split</source>
+        <translation>Posun na další rozdělený pohled</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3757"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Další rozdělený pohled&lt;/b&gt;&lt;p&gt;Posun na další rozdělený pohled.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>Previous split</source>
         <translation>Předchozí rozdělený pohled</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>&amp;Previous split</source>
         <translation>&amp;Předchozí rozdělený pohled</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3747"/>
+        <location filename="../ViewManager/ViewManager.py" line="3771"/>
         <source>Move to the previous split</source>
         <translation>Posun na předchozí rozdělený pohled</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3749"/>
+        <location filename="../ViewManager/ViewManager.py" line="3773"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Předchozí rozdělený pohled&lt;/b&gt;&lt;p&gt;Posun na předchozí rozdělený pohled.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3833"/>
+        <location filename="../ViewManager/ViewManager.py" line="3857"/>
         <source>&amp;View</source>
         <translation>Poh&amp;led</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3870"/>
+        <location filename="../ViewManager/ViewManager.py" line="3894"/>
         <source>View</source>
         <translation>Pohled</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3906"/>
-        <source>Start Macro Recording</source>
-        <translation>Spustit záznam makra</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3900"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation>Spus&amp;tit záznam makra</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3908"/>
-        <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Spustit záznam makra&lt;/b&gt;&lt;p&gt;Spustí se záznam příkazů do nového makra.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
-        <source>Stop Macro Recording</source>
-        <translation>Zastavit záznam makra</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3916"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation>Sto&amp;p záznamu makra</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3922"/>
-        <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Stop záznamu makra&lt;/b&gt;&lt;p&gt;Zastaví se nahrávání příkazů do makra.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3934"/>
-        <source>Run Macro</source>
-        <translation>Spustit makro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3930"/>
-        <source>&amp;Run Macro</source>
-        <translation>Spustit mak&amp;ro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3936"/>
-        <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Spustit makro&lt;/b&gt;&lt;p&gt;Spustit nahrané makro.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3948"/>
-        <source>Delete Macro</source>
-        <translation>Smazat makro</translation>
+        <source>Start Macro Recording</source>
+        <translation>Spustit záznam makra</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3924"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation>Spus&amp;tit záznam makra</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3932"/>
+        <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Spustit záznam makra&lt;/b&gt;&lt;p&gt;Spustí se záznam příkazů do nového makra.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3944"/>
-        <source>&amp;Delete Macro</source>
-        <translation>Smazat makr&amp;o</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3950"/>
-        <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Smazat makro&lt;/b&gt;&lt;p&gt;Smaže se nahrané makro.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3962"/>
-        <source>Load Macro</source>
-        <translation>Načíst makro</translation>
+        <source>Stop Macro Recording</source>
+        <translation>Zastavit záznam makra</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3940"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation>Sto&amp;p záznamu makra</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3946"/>
+        <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Stop záznamu makra&lt;/b&gt;&lt;p&gt;Zastaví se nahrávání příkazů do makra.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3958"/>
-        <source>&amp;Load Macro</source>
-        <translation>&amp;Načíst makro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3964"/>
-        <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Načíst makro&lt;/b&gt;&lt;p&gt;Načte se makro ze souboru.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3976"/>
-        <source>Save Macro</source>
-        <translation>Uložit makro</translation>
+        <source>Run Macro</source>
+        <translation>Spustit makro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3954"/>
+        <source>&amp;Run Macro</source>
+        <translation>Spustit mak&amp;ro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3960"/>
+        <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Spustit makro&lt;/b&gt;&lt;p&gt;Spustit nahrané makro.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3972"/>
+        <source>Delete Macro</source>
+        <translation>Smazat makro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3968"/>
+        <source>&amp;Delete Macro</source>
+        <translation>Smazat makr&amp;o</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3974"/>
+        <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Smazat makro&lt;/b&gt;&lt;p&gt;Smaže se nahrané makro.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3986"/>
+        <source>Load Macro</source>
+        <translation>Načíst makro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3982"/>
+        <source>&amp;Load Macro</source>
+        <translation>&amp;Načíst makro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3988"/>
+        <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Načíst makro&lt;/b&gt;&lt;p&gt;Načte se makro ze souboru.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4000"/>
+        <source>Save Macro</source>
+        <translation>Uložit makro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3996"/>
         <source>&amp;Save Macro</source>
         <translation>&amp;Uložit makro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3978"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Uložit makro&lt;/b&gt;&lt;p&gt;Nahrané makro se uloží do souboru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3994"/>
+        <location filename="../ViewManager/ViewManager.py" line="4018"/>
         <source>&amp;Macros</source>
         <translation>&amp;Makra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4020"/>
+        <location filename="../ViewManager/ViewManager.py" line="4044"/>
         <source>Toggle Bookmark</source>
         <translation>Přepnout záložku</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
         <source>&amp;Toggle Bookmark</source>
         <translation>Přepnou&amp;t záložku</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4022"/>
+        <location filename="../ViewManager/ViewManager.py" line="4046"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Přepnout záložku&lt;/b&gt;&lt;p&gt;Vytvoří/zruší záložku na aktuálním řádku v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4039"/>
+        <location filename="../ViewManager/ViewManager.py" line="4063"/>
         <source>Next Bookmark</source>
         <translation>Následující záložka</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>&amp;Next Bookmark</source>
         <translation>&amp;Následující záložka</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4041"/>
+        <location filename="../ViewManager/ViewManager.py" line="4065"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Následující záložka&lt;/b&gt;&lt;p&gt;Přesun na následující záložku v aktuálním editoru.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <location filename="../ViewManager/ViewManager.py" line="4081"/>
         <source>Previous Bookmark</source>
         <translation>Předchozí záložka</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <location filename="../ViewManager/ViewManager.py" line="4073"/>
         <source>&amp;Previous Bookmark</source>
         <translation>&amp;Předchozí záložka</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <location filename="../ViewManager/ViewManager.py" line="4073"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4059"/>
+        <location filename="../ViewManager/ViewManager.py" line="4083"/>
         <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Předchozí záložka&lt;/b&gt;&lt;p&gt;Přesun na předchozí záložku.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4074"/>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <source>Clear Bookmarks</source>
         <translation>Vyčistit záložky</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4091"/>
         <source>&amp;Clear Bookmarks</source>
         <translation>Vyčistit (zr&amp;ušit) záložky</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4091"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4076"/>
-        <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Vyčistit (zrušit) záložky&lt;/b&gt;&lt;p&gt;Zruší se všechny záložky ve všech editorech.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4090"/>
-        <source>Goto Syntax Error</source>
-        <translation>Jít na Syntaktickou chybu</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4084"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation>&amp;Jít na Syntaktickou chybu</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4092"/>
-        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Jít na Syntax error&lt;/b&gt;&lt;p&gt;Přesun na syntaktickou chybu v aktuálním editoru.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4105"/>
-        <source>Clear Syntax Errors</source>
-        <translation>Vyčistit Syntaktické chyby</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4100"/>
+        <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Vyčistit (zrušit) záložky&lt;/b&gt;&lt;p&gt;Zruší se všechny záložky ve všech editorech.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4114"/>
+        <source>Goto Syntax Error</source>
+        <translation>Jít na Syntaktickou chybu</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4108"/>
+        <source>&amp;Goto Syntax Error</source>
+        <translation>&amp;Jít na Syntaktickou chybu</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4116"/>
+        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Jít na Syntax error&lt;/b&gt;&lt;p&gt;Přesun na syntaktickou chybu v aktuálním editoru.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4129"/>
+        <source>Clear Syntax Errors</source>
+        <translation>Vyčistit Syntaktické chyby</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4124"/>
         <source>Clear &amp;Syntax Errors</source>
         <translation>V&amp;yčistit Syntaktické chyby</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4107"/>
+        <location filename="../ViewManager/ViewManager.py" line="4131"/>
         <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vyčistit syntaktické chyby&lt;/b&gt;&lt;p&gt;Smažou se záznamy o syntaktických chybách ve všech editorech.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4175"/>
+        <location filename="../ViewManager/ViewManager.py" line="4199"/>
         <source>Next uncovered line</source>
         <translation>Následují problémová řádka</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4169"/>
+        <location filename="../ViewManager/ViewManager.py" line="4193"/>
         <source>&amp;Next uncovered line</source>
         <translation>Nás&amp;ledující problémová řádka</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4177"/>
+        <location filename="../ViewManager/ViewManager.py" line="4201"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Následující problémová řádka&lt;/b&gt;&lt;p&gt;Jít na řádku v aktuálním editoru, která byla nalezena jako problémová.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4194"/>
+        <location filename="../ViewManager/ViewManager.py" line="4218"/>
         <source>Previous uncovered line</source>
         <translation>Předchozí problémová řádka</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4186"/>
+        <location filename="../ViewManager/ViewManager.py" line="4210"/>
         <source>&amp;Previous uncovered line</source>
         <translation>Př&amp;edchozí problémová řádka</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4196"/>
+        <location filename="../ViewManager/ViewManager.py" line="4220"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Předchozí problémová řádka&lt;/b&gt;&lt;p&gt;Jít na předchozí řádku v aktuálním editoru, která byla nalezena jako problémová.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4236"/>
         <source>Next Task</source>
         <translation>Následující úloha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4206"/>
+        <location filename="../ViewManager/ViewManager.py" line="4230"/>
         <source>&amp;Next Task</source>
         <translation>Následující úlo&amp;ha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4214"/>
+        <location filename="../ViewManager/ViewManager.py" line="4238"/>
         <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Následující úloha&lt;/b&gt;&lt;p&gt;Jít na řádek v aktuálním editoru, na kterém je následující úloha.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4229"/>
+        <location filename="../ViewManager/ViewManager.py" line="4253"/>
         <source>Previous Task</source>
         <translation>Předchozí úloha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4222"/>
+        <location filename="../ViewManager/ViewManager.py" line="4246"/>
         <source>&amp;Previous Task</source>
         <translation>Předchozí úl&amp;oha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4255"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Předchozí úloha&lt;/b&gt;&lt;p&gt;Jít na řádek, na kterém se nachází předchozí úloha.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4285"/>
+        <location filename="../ViewManager/ViewManager.py" line="4309"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Záložky</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4355"/>
         <source>Bookmarks</source>
         <translation>Záložky</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4483"/>
+        <location filename="../ViewManager/ViewManager.py" line="4507"/>
         <source>Open files</source>
         <translation>Otevřené soubory</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4527"/>
+        <location filename="../ViewManager/ViewManager.py" line="4551"/>
         <source>File Modified</source>
         <translation>Soubor změněn</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5371"/>
+        <location filename="../ViewManager/ViewManager.py" line="5395"/>
         <source>&amp;Clear</source>
         <translation>&amp;Vyčistit</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5365"/>
+        <location filename="../ViewManager/ViewManager.py" line="5389"/>
         <source>&amp;Add</source>
         <translation>Přid&amp;at</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5368"/>
+        <location filename="../ViewManager/ViewManager.py" line="5392"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Edit...</translation>
     </message>
@@ -84070,63 +84065,63 @@
         <translation>Exportovat jako</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3433"/>
+        <location filename="../ViewManager/ViewManager.py" line="3457"/>
         <source>Quicksearch Textedit</source>
         <translation>Rychlé hledání texteditoru</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2936"/>
+        <location filename="../ViewManager/ViewManager.py" line="2960"/>
         <source>Clear search markers</source>
         <translation>Vyčistit značky hledání</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2936"/>
+        <location filename="../ViewManager/ViewManager.py" line="2960"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2944"/>
+        <location filename="../ViewManager/ViewManager.py" line="2968"/>
         <source>Clear all displayed search markers</source>
         <translation>Vyčistit všechny zobrazené začky hledání</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2946"/>
+        <location filename="../ViewManager/ViewManager.py" line="2970"/>
         <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vyčistit značky hledání&lt;/b&gt;&lt;p&gt;Smažou všechny zabrazené značky hledání.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2904"/>
+        <location filename="../ViewManager/ViewManager.py" line="2928"/>
         <source>Search next occurrence of text</source>
         <translation>Hledat další výskyt textu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2906"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Hledat další&lt;/b&gt;&lt;p&gt;Hledá se další výskyt hledaného textu v aktuálním editoru. Stále platí nastavení, která byla nastavena při zadání hledaného textu.&lt;p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2924"/>
+        <location filename="../ViewManager/ViewManager.py" line="2948"/>
         <source>Search previous occurrence of text</source>
         <translation>Hledat předchozí výskyt textu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2926"/>
+        <location filename="../ViewManager/ViewManager.py" line="2950"/>
         <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Hledat předchozí&lt;/b&gt;&lt;p&gt;Hledá se předchozí výskyt hledaného textu v aktuálním editoru. Stále platí nastavení, která byla nastavena při zadání hledaného textu.&lt;p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3098"/>
-        <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Rychlé hledání&lt;/b&gt;&lt;p&gt;Aktivuje se funkce rychlého hledání. Kurzor se přemístí do okna zadání hledaného výrazu. Je-li toto okno aktivní a obsahuje-li text, vyhledává v textu výskyt tohoto výrazu.&lt;p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3122"/>
+        <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Rychlé hledání&lt;/b&gt;&lt;p&gt;Aktivuje se funkce rychlého hledání. Kurzor se přemístí do okna zadání hledaného výrazu. Je-li toto okno aktivní a obsahuje-li text, vyhledává v textu výskyt tohoto výrazu.&lt;p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3146"/>
         <source>&lt;b&gt;Quicksearch backwards&lt;/b&gt;&lt;p&gt;This searches the previous occurrence of the quicksearch text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rychlé hledání zpět&lt;/b&gt;&lt;p&gt;Vyhledává se předchozí výskyt výrazu v rychlém hledání.&lt;p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3406"/>
+        <location filename="../ViewManager/ViewManager.py" line="3430"/>
         <source>&lt;p&gt;Enter the searchtext directly into this field. The search will be performed case insensitive. The quicksearch function is activated upon activation of the quicksearch next action (default key Ctrl+Shift+K), if this entry field does not have the input focus. Otherwise it searches for the next occurrence of the text entered. The quicksearch backwards action (default key Ctrl+Shift+J) searches backward. Activating the &apos;quicksearch extend&apos; action (default key Ctrl+Shift+H) extends the current searchtext to the end of the currently found word. The quicksearch can be ended by pressing the Return key while the quicksearch entry has the the input focus.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Pište hledaný text přímo do okna Rychlého hledání. Při zadávání se neberou na zřetel velké/malé znaky. Pokud okno nemá fokus, aktivujte jej příkazem Rychlé hledání (defaultně Ctrl+Shift+K). Jinak se pokračuje v hledání dalšího výskytu zadaného textu. Rychlé hledání nazpět (defaultně Ctr+Shift+J) prohledává text směrem k začátku dokumentu. Rozšířené rychlé hledání (defaultně Ctrl+Shift+H) rozšíří hledaný text na celé slovo, na kterém je kurzor. Rychlé hledání je ukončeno stiskem klávesy Enter za předpokladu, že fokus se nachází v okně Rychlého hledání.&lt;/p&gt;</translation>
     </message>
@@ -84166,124 +84161,124 @@
         <translation>&lt;b&gt;Náhled tisku&lt;/b&gt;&lt;p&gt;Náhled tisku aktuálního editačního okna.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Insert new line below current line</source>
         <translation>Vložit nový řádek pod aktuální</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Shift+Return</source>
         <translation>Shift+Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Shift+Enter</source>
         <translation>Shift+Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Replace in Files</source>
         <translation>Nahradit v souborech</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Replace in F&amp;iles...</source>
         <translation>Nahrad&amp;it v souborech...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3286"/>
+        <location filename="../ViewManager/ViewManager.py" line="3310"/>
         <source>Search for a text in files and replace it</source>
         <translation>Hledat text v souborech a nahradit jej</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3288"/>
+        <location filename="../ViewManager/ViewManager.py" line="3312"/>
         <source>&lt;b&gt;Replace in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nahradit v souborech&lt;/b&gt;&lt;p&gt;Hledání zadaného textu v souborech v adresářovém stromu projektu a jeho nahrazení. Je zobrazeno dialogové okno pro zadání hledaného textu, textu nahrazujícího a volby pro hledání a zobrazní výsledku.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4373"/>
+        <location filename="../ViewManager/ViewManager.py" line="4397"/>
         <source>Perform spell check of current editor</source>
         <translation>Spustit kontrolu pravopisu v aktuálním editoru</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4383"/>
+        <location filename="../ViewManager/ViewManager.py" line="4407"/>
         <source>Automatic spell checking</source>
         <translation>Automatická kontrola pravopisu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4383"/>
+        <location filename="../ViewManager/ViewManager.py" line="4407"/>
         <source>&amp;Automatic spell checking</source>
         <translation>&amp;Automatická kontrola pravopisu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4391"/>
+        <location filename="../ViewManager/ViewManager.py" line="4415"/>
         <source>(De-)Activate automatic spell checking</source>
         <translation>(De-)aktivovat akutomatickou kontrolu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4393"/>
+        <location filename="../ViewManager/ViewManager.py" line="4417"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Automatická kontrola pravopisu&lt;/b&gt;&lt;p&gt;Zapnout neobo vypnout automatickou kontrolu pravopisu ve všech editorech.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4460"/>
+        <location filename="../ViewManager/ViewManager.py" line="4484"/>
         <source>Spelling</source>
         <translation>Pravopis</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4527"/>
+        <location filename="../ViewManager/ViewManager.py" line="4551"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Soubor &lt;b&gt;{0}&lt;/b&gt; obsahuje neuložené změny.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4926"/>
+        <location filename="../ViewManager/ViewManager.py" line="4950"/>
         <source>Line: {0:5}</source>
         <translation>Řádek: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4932"/>
+        <location filename="../ViewManager/ViewManager.py" line="4956"/>
         <source>Pos: {0:5}</source>
         <translation>Poz: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4122"/>
+        <location filename="../ViewManager/ViewManager.py" line="4146"/>
         <source>Next warning message</source>
         <translation>Další varování</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4116"/>
+        <location filename="../ViewManager/ViewManager.py" line="4140"/>
         <source>&amp;Next warning message</source>
         <translation>Další varová&amp;ní</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4141"/>
+        <location filename="../ViewManager/ViewManager.py" line="4165"/>
         <source>Previous warning message</source>
         <translation>Předchozí varování</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4133"/>
+        <location filename="../ViewManager/ViewManager.py" line="4157"/>
         <source>&amp;Previous warning message</source>
         <translation>&amp;Předchozí varování</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4159"/>
+        <location filename="../ViewManager/ViewManager.py" line="4183"/>
         <source>Clear Warning Messages</source>
         <translation>Vyčistit varovná hlášení</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4152"/>
+        <location filename="../ViewManager/ViewManager.py" line="4176"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>&amp;Vyčistit varovná hlášení</translation>
     </message>
@@ -84304,425 +84299,425 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3200"/>
+        <location filename="../ViewManager/ViewManager.py" line="3224"/>
         <source>Goto Last Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3213"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3213"/>
         <source>Ctrl+Shift+G</source>
         <comment>Search|Goto Last Edit Location</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3203"/>
+        <location filename="../ViewManager/ViewManager.py" line="3227"/>
         <source>&lt;b&gt;Goto Last Edit Location&lt;/b&gt;&lt;p&gt;Go to the location of the last edit in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3212"/>
-        <source>Goto Previous Method or Class</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3212"/>
-        <source>Ctrl+Shift+Up</source>
-        <comment>Search|Goto Previous Method or Class</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3222"/>
-        <source>Go to the previous method or class definition</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3226"/>
-        <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3236"/>
-        <source>Goto Next Method or Class</source>
+        <source>Goto Previous Method or Class</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3236"/>
-        <source>Ctrl+Shift+Down</source>
-        <comment>Search|Goto Next Method or Class</comment>
+        <source>Ctrl+Shift+Up</source>
+        <comment>Search|Goto Previous Method or Class</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3246"/>
+        <source>Go to the previous method or class definition</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3250"/>
+        <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3260"/>
+        <source>Goto Next Method or Class</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3260"/>
+        <source>Ctrl+Shift+Down</source>
+        <comment>Search|Goto Next Method or Class</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3270"/>
         <source>Go to the next method or class definition</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3248"/>
+        <location filename="../ViewManager/ViewManager.py" line="3272"/>
         <source>&lt;b&gt;Goto Next Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the next method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3757"/>
+        <location filename="../ViewManager/ViewManager.py" line="3781"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3762"/>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <source>Preview the current file in the web browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3764"/>
+        <location filename="../ViewManager/ViewManager.py" line="3788"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1489"/>
+        <location filename="../ViewManager/ViewManager.py" line="1511"/>
         <source>Meta+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1502"/>
+        <location filename="../ViewManager/ViewManager.py" line="1524"/>
         <source>Meta+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1514"/>
+        <location filename="../ViewManager/ViewManager.py" line="1536"/>
         <source>Meta+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1526"/>
+        <location filename="../ViewManager/ViewManager.py" line="1548"/>
         <source>Meta+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1587"/>
+        <location filename="../ViewManager/ViewManager.py" line="1609"/>
         <source>Move to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1603"/>
+        <location filename="../ViewManager/ViewManager.py" line="1625"/>
         <source>Move to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1620"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Move to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1628"/>
+        <location filename="../ViewManager/ViewManager.py" line="1650"/>
         <source>Meta+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1696"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Meta+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1702"/>
+        <location filename="../ViewManager/ViewManager.py" line="1724"/>
         <source>Move to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1719"/>
+        <location filename="../ViewManager/ViewManager.py" line="1741"/>
         <source>Move to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1764"/>
+        <location filename="../ViewManager/ViewManager.py" line="1786"/>
         <source>Meta+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1779"/>
+        <location filename="../ViewManager/ViewManager.py" line="1801"/>
         <source>Meta+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1794"/>
+        <location filename="../ViewManager/ViewManager.py" line="1816"/>
         <source>Meta+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1809"/>
+        <location filename="../ViewManager/ViewManager.py" line="1831"/>
         <source>Meta+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1877"/>
+        <location filename="../ViewManager/ViewManager.py" line="1899"/>
         <source>Extend selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1895"/>
+        <location filename="../ViewManager/ViewManager.py" line="1917"/>
         <source>Extend selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1903"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Meta+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1960"/>
+        <location filename="../ViewManager/ViewManager.py" line="1982"/>
         <source>Meta+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1966"/>
+        <location filename="../ViewManager/ViewManager.py" line="1988"/>
         <source>Extend selection to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1974"/>
+        <location filename="../ViewManager/ViewManager.py" line="1996"/>
         <source>Ctrl+Shift+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1983"/>
+        <location filename="../ViewManager/ViewManager.py" line="2005"/>
         <source>Extend selection to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1991"/>
+        <location filename="../ViewManager/ViewManager.py" line="2013"/>
         <source>Ctrl+Shift+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2009"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Meta+H</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2018"/>
+        <location filename="../ViewManager/ViewManager.py" line="2040"/>
         <source>Delete previous character if not at start of line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2039"/>
+        <location filename="../ViewManager/ViewManager.py" line="2061"/>
         <source>Meta+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2083"/>
+        <location filename="../ViewManager/ViewManager.py" line="2105"/>
         <source>Meta+K</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2192"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <source>Move to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2209"/>
+        <location filename="../ViewManager/ViewManager.py" line="2231"/>
         <source>Extend selection to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2251"/>
+        <location filename="../ViewManager/ViewManager.py" line="2273"/>
         <source>Meta+Alt+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2266"/>
+        <location filename="../ViewManager/ViewManager.py" line="2288"/>
         <source>Meta+Alt+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2284"/>
+        <location filename="../ViewManager/ViewManager.py" line="2306"/>
         <source>Meta+Alt+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2302"/>
+        <location filename="../ViewManager/ViewManager.py" line="2324"/>
         <source>Meta+Alt+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2308"/>
+        <location filename="../ViewManager/ViewManager.py" line="2330"/>
         <source>Extend rectangular selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2327"/>
+        <location filename="../ViewManager/ViewManager.py" line="2349"/>
         <source>Extend rectangular selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2337"/>
+        <location filename="../ViewManager/ViewManager.py" line="2359"/>
         <source>Meta+Alt+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2340"/>
+        <location filename="../ViewManager/ViewManager.py" line="2362"/>
         <source>Alt+Shift+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2361"/>
+        <location filename="../ViewManager/ViewManager.py" line="2383"/>
         <source>Alt+Shift+PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2373"/>
+        <location filename="../ViewManager/ViewManager.py" line="2395"/>
         <source>Meta+Alt+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2393"/>
+        <location filename="../ViewManager/ViewManager.py" line="2415"/>
         <source>Scroll to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2408"/>
+        <location filename="../ViewManager/ViewManager.py" line="2430"/>
         <source>Scroll to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2423"/>
+        <location filename="../ViewManager/ViewManager.py" line="2445"/>
         <source>Scroll vertically to center current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2431"/>
-        <source>Meta+L</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2438"/>
-        <source>Move to end of next word</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2453"/>
+        <source>Meta+L</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2460"/>
+        <source>Move to end of next word</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2475"/>
         <source>Extend selection to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2469"/>
+        <location filename="../ViewManager/ViewManager.py" line="2491"/>
         <source>Move to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2481"/>
+        <location filename="../ViewManager/ViewManager.py" line="2503"/>
         <source>Extend selection to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2493"/>
+        <location filename="../ViewManager/ViewManager.py" line="2515"/>
         <source>Move to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2501"/>
+        <location filename="../ViewManager/ViewManager.py" line="2523"/>
         <source>Meta+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2508"/>
+        <location filename="../ViewManager/ViewManager.py" line="2530"/>
         <source>Extend selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2519"/>
+        <location filename="../ViewManager/ViewManager.py" line="2541"/>
         <source>Meta+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2526"/>
+        <location filename="../ViewManager/ViewManager.py" line="2548"/>
         <source>Extend rectangular selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2536"/>
+        <location filename="../ViewManager/ViewManager.py" line="2558"/>
         <source>Meta+Alt+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2544"/>
+        <location filename="../ViewManager/ViewManager.py" line="2566"/>
         <source>Extend selection to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2563"/>
+        <location filename="../ViewManager/ViewManager.py" line="2585"/>
         <source>Move to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2577"/>
+        <location filename="../ViewManager/ViewManager.py" line="2599"/>
         <source>Extend selection to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2592"/>
+        <location filename="../ViewManager/ViewManager.py" line="2614"/>
         <source>Move to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2609"/>
+        <location filename="../ViewManager/ViewManager.py" line="2631"/>
         <source>Extend selection to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2626"/>
+        <location filename="../ViewManager/ViewManager.py" line="2648"/>
         <source>Move to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2640"/>
+        <location filename="../ViewManager/ViewManager.py" line="2662"/>
         <source>Extend selection to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2655"/>
+        <location filename="../ViewManager/ViewManager.py" line="2677"/>
         <source>Stuttered move up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2667"/>
+        <location filename="../ViewManager/ViewManager.py" line="2689"/>
         <source>Stuttered extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2680"/>
+        <location filename="../ViewManager/ViewManager.py" line="2702"/>
         <source>Stuttered move down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2692"/>
+        <location filename="../ViewManager/ViewManager.py" line="2714"/>
         <source>Stuttered extend selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2705"/>
+        <location filename="../ViewManager/ViewManager.py" line="2727"/>
         <source>Delete right to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2713"/>
+        <location filename="../ViewManager/ViewManager.py" line="2735"/>
         <source>Alt+Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2720"/>
+        <location filename="../ViewManager/ViewManager.py" line="2742"/>
         <source>Move selected lines up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2732"/>
+        <location filename="../ViewManager/ViewManager.py" line="2754"/>
         <source>Move selected lines down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2346"/>
+        <location filename="../ViewManager/ViewManager.py" line="2368"/>
         <source>Alt+Shift+PgUp</source>
         <translation type="unfinished"></translation>
     </message>
@@ -84748,39 +84743,39 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Zoom reset</source>
         <translation type="unfinished">Resetovat lupu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished">&amp;Resetovat lupu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3533"/>
+        <location filename="../ViewManager/ViewManager.py" line="3557"/>
         <source>Reset the zoom of the text</source>
         <translation type="unfinished">Resetovat lupu textu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3535"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Reset lupy&lt;/b&gt;&lt;p&gt;Reset lupy pro text. Nastaví se lupa na hodnotu 100%.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
@@ -84791,191 +84786,191 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <location filename="../ViewManager/ViewManager.py" line="4270"/>
         <source>Next Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4240"/>
-        <source>&amp;Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4248"/>
-        <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <source>&amp;Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4272"/>
+        <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4288"/>
         <source>Previous Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4257"/>
+        <location filename="../ViewManager/ViewManager.py" line="4281"/>
         <source>&amp;Previous Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4266"/>
+        <location filename="../ViewManager/ViewManager.py" line="4290"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Check spelling</source>
         <translation type="unfinished">Kontrola pravopisu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Check &amp;spelling...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4399"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4424"/>
+        <location filename="../ViewManager/ViewManager.py" line="4448"/>
         <source>Edit Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4426"/>
+        <location filename="../ViewManager/ViewManager.py" line="4450"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4429"/>
+        <location filename="../ViewManager/ViewManager.py" line="4453"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4434"/>
+        <location filename="../ViewManager/ViewManager.py" line="4458"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4437"/>
+        <location filename="../ViewManager/ViewManager.py" line="4461"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6630"/>
+        <location filename="../ViewManager/ViewManager.py" line="6654"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6607"/>
+        <location filename="../ViewManager/ViewManager.py" line="6631"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6589"/>
+        <location filename="../ViewManager/ViewManager.py" line="6613"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6618"/>
+        <location filename="../ViewManager/ViewManager.py" line="6642"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6630"/>
+        <location filename="../ViewManager/ViewManager.py" line="6654"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2955"/>
+        <location filename="../ViewManager/ViewManager.py" line="2979"/>
         <source>Search current word forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2955"/>
+        <location filename="../ViewManager/ViewManager.py" line="2979"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation type="unfinished">Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2966"/>
+        <location filename="../ViewManager/ViewManager.py" line="2990"/>
         <source>Search next occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2969"/>
+        <location filename="../ViewManager/ViewManager.py" line="2993"/>
         <source>&lt;b&gt;Search current word forward&lt;/b&gt;&lt;p&gt;Search the next occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2978"/>
+        <location filename="../ViewManager/ViewManager.py" line="3002"/>
         <source>Search current word backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2978"/>
+        <location filename="../ViewManager/ViewManager.py" line="3002"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2989"/>
+        <location filename="../ViewManager/ViewManager.py" line="3013"/>
         <source>Search previous occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2992"/>
+        <location filename="../ViewManager/ViewManager.py" line="3016"/>
         <source>&lt;b&gt;Search current word backward&lt;/b&gt;&lt;p&gt;Search the previous occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Search in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Search in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Meta+Ctrl+Alt+F</source>
         <comment>Search|Search Open Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3310"/>
-        <source>Search for a text in open files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3312"/>
-        <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
-        <source>Replace in Open Files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
-        <source>Meta+Ctrl+Alt+R</source>
-        <comment>Search|Replace in Open Files</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3332"/>
-        <source>Search for a text in open files and replace it</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3334"/>
+        <source>Search for a text in open files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3336"/>
+        <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
+        <source>Replace in Open Files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
+        <source>Meta+Ctrl+Alt+R</source>
+        <comment>Search|Replace in Open Files</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
+        <source>Search for a text in open files and replace it</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3358"/>
         <source>&lt;b&gt;Replace in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
         <source>Replace in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -85001,62 +84996,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4953"/>
+        <location filename="../ViewManager/ViewManager.py" line="4977"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4960"/>
+        <location filename="../ViewManager/ViewManager.py" line="4984"/>
         <source>EOL Mode: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3641"/>
+        <location filename="../ViewManager/ViewManager.py" line="3665"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3641"/>
-        <source>New &amp;Document View</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3646"/>
-        <source>Open a new view of the current document</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3648"/>
-        <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3658"/>
-        <source>New Document View (with new split)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3665"/>
+        <source>New &amp;Document View</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3670"/>
+        <source>Open a new view of the current document</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3672"/>
+        <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3682"/>
+        <source>New Document View (with new split)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3689"/>
         <source>Open a new view of the current document in a new split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3668"/>
+        <location filename="../ViewManager/ViewManager.py" line="3692"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4124"/>
+        <location filename="../ViewManager/ViewManager.py" line="4148"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4143"/>
+        <location filename="../ViewManager/ViewManager.py" line="4167"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4161"/>
+        <location filename="../ViewManager/ViewManager.py" line="4185"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -85117,65 +85112,65 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3020"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Replace and Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3020"/>
-        <source>Meta+R</source>
-        <comment>Search|Replace and Search</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3030"/>
-        <source>Replace the found text and search the next occurrence</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3033"/>
-        <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3044"/>
-        <source>Replace Occurrence</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3044"/>
-        <source>Ctrl+Meta+R</source>
-        <comment>Search|Replace Occurrence</comment>
+        <source>Meta+R</source>
+        <comment>Search|Replace and Search</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3054"/>
-        <source>Replace the found text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3056"/>
-        <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3066"/>
-        <source>Replace All</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3066"/>
-        <source>Shift+Meta+R</source>
-        <comment>Search|Replace All</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3076"/>
-        <source>Replace search text occurrences</source>
+        <source>Replace the found text and search the next occurrence</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3057"/>
+        <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <source>Replace Occurrence</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <source>Ctrl+Meta+R</source>
+        <comment>Search|Replace Occurrence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3078"/>
+        <source>Replace the found text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3080"/>
+        <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <source>Replace All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <source>Shift+Meta+R</source>
+        <comment>Search|Replace All</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
+        <source>Replace search text occurrences</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3102"/>
         <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -85201,57 +85196,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <location filename="../ViewManager/ViewManager.py" line="3638"/>
         <source>Clear all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3610"/>
+        <location filename="../ViewManager/ViewManager.py" line="3634"/>
         <source>Clear &amp;all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3616"/>
+        <location filename="../ViewManager/ViewManager.py" line="3640"/>
         <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Reverse selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Meta+Alt+R</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3774"/>
-        <source>Python AST Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3779"/>
-        <source>Show the AST for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3781"/>
-        <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3791"/>
-        <source>Python Disassembly Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Python AST Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3803"/>
+        <source>Show the AST for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3805"/>
+        <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3815"/>
+        <source>Python Disassembly Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
         <source>Show the Disassembly for the current Python file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3800"/>
+        <location filename="../ViewManager/ViewManager.py" line="3824"/>
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -85270,6 +85265,27 @@
         <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1468"/>
+        <source>Generate Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1468"/>
+        <source>Ctrl+Alt+D</source>
+        <comment>Edit|Generate Docstring</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1475"/>
+        <source>Generate a docstring for the current function/method</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1478"/>
+        <source>&lt;b&gt;Generate Docstring&lt;/b&gt;&lt;p&gt;Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
Binary file eric6/i18n/eric6_de.qm has changed
--- a/eric6/i18n/eric6_de.ts	Fri Jan 22 16:55:43 2021 +0100
+++ b/eric6/i18n/eric6_de.ts	Sat Jan 23 12:02:52 2021 +0100
@@ -11039,17 +11039,17 @@
         <translation>Speichern unter...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="830"/>
+        <location filename="../QScintilla/Editor.py" line="834"/>
         <source>Select all</source>
         <translation>Alles auswählen</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="831"/>
+        <location filename="../QScintilla/Editor.py" line="835"/>
         <source>Deselect all</source>
         <translation>Auswahl aufheben</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="828"/>
+        <location filename="../QScintilla/Editor.py" line="832"/>
         <source>Select to brace</source>
         <translation>Zur Klammer auswählen</translation>
     </message>
@@ -11639,7 +11639,7 @@
         <translation>Rechtschreibprüfung...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="839"/>
+        <location filename="../QScintilla/Editor.py" line="843"/>
         <source>Check spelling of selection...</source>
         <translation>Rechtschreibprüfung für Auswahl...</translation>
     </message>
@@ -11654,7 +11654,7 @@
         <translation>Alle ignorieren</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="843"/>
+        <location filename="../QScintilla/Editor.py" line="847"/>
         <source>Remove from dictionary</source>
         <translation>Aus dem Wörterbuch entfernen</translation>
     </message>
@@ -11894,12 +11894,7 @@
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; wurde geändert, während sie in eric geöffnet war. Neu einlesen?&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="849"/>
-        <source>Insert Docstring</source>
-        <translation>Docstring einfügen</translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8715"/>
+        <location filename="../QScintilla/Editor.py" line="8726"/>
         <source>Generate Docstring</source>
         <translation>Docstring erzeugen</translation>
     </message>
@@ -77890,107 +77885,107 @@
         <translation>Hebt die Auswahl auf</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3447"/>
+        <location filename="../ViewManager/ViewManager.py" line="3471"/>
         <source>Search</source>
         <translation>Suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2875"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>&amp;Search...</source>
         <translation>&amp;Suchen...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2883"/>
+        <location filename="../ViewManager/ViewManager.py" line="2907"/>
         <source>Search for a text</source>
         <translation>Sucht nach Text</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2885"/>
+        <location filename="../ViewManager/ViewManager.py" line="2909"/>
         <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Suchen&lt;/b&gt;&lt;p&gt;Sucht einen Text im aktuellen Editor. Es wird ein Dialog eingeblendet, in dem der Suchtext und verschieden Suchoptionen eingegeben werden kann.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>Replace</source>
         <translation>Ersetzen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>&amp;Replace...</source>
         <translation>&amp;Ersetzen...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3008"/>
+        <location filename="../ViewManager/ViewManager.py" line="3032"/>
         <source>Replace some text</source>
         <translation>Ersetzt Text</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3010"/>
+        <location filename="../ViewManager/ViewManager.py" line="3034"/>
         <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ersetzen&lt;/b&gt;&lt;p&gt;Dies sucht nach Text im aktuellen Editor und ersetzt ihn. Es wird ein Dialog eingeblendet, in dem der Suchtext, der Ersetzungstext und verschieden Such- und Ersetzungsoptionen eingegeben werden kann.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3160"/>
+        <location filename="../ViewManager/ViewManager.py" line="3184"/>
         <source>Goto Line</source>
         <translation>Gehe zu Zeile</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <location filename="../ViewManager/ViewManager.py" line="3176"/>
         <source>&amp;Goto Line...</source>
         <translation>Gehe zu &amp;Zeile...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3162"/>
+        <location filename="../ViewManager/ViewManager.py" line="3186"/>
         <source>&lt;b&gt;Goto Line&lt;/b&gt;&lt;p&gt;Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gehe zu Zeile&lt;/b&gt;&lt;p&gt;Dies springt zur angegebenen Zeile im aktuellen Editor. Es wird ein Dialog eingeblendet, in dem die Zeilennummer eingegeben werden kann.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3496"/>
+        <location filename="../ViewManager/ViewManager.py" line="3520"/>
         <source>Zoom in on the text</source>
         <translation>Text vergrößern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3515"/>
+        <location filename="../ViewManager/ViewManager.py" line="3539"/>
         <source>Zoom out on the text</source>
         <translation>Text verkleinern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>Zoom</source>
         <translation>Maßstab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>&amp;Zoom</source>
         <translation>&amp;Maßstab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3552"/>
+        <location filename="../ViewManager/ViewManager.py" line="3576"/>
         <source>Zoom the text</source>
         <translation>Den Maßstab des Textes ändern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3554"/>
+        <location filename="../ViewManager/ViewManager.py" line="3578"/>
         <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Maßstab&lt;/b&gt;&lt;p&gt;dies ändert den Textmaßstab. Es wird ein dialog eingeblendet, in dem der Maßstab eingegeben werden kann.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3567"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Toggle all folds</source>
         <translation>Alle Faltungen umschalten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <location filename="../ViewManager/ViewManager.py" line="3587"/>
         <source>&amp;Toggle all folds</source>
         <translation>&amp;Alle Faltungen umschalten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3569"/>
+        <location filename="../ViewManager/ViewManager.py" line="3593"/>
         <source>&lt;b&gt;Toggle all folds&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alle Faltungen umschalten&lt;/b&gt;&lt;p&gt;Dies schaltet alle Faltungen des aktuellen Editors um.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4527"/>
+        <location filename="../ViewManager/ViewManager.py" line="4551"/>
         <source>File Modified</source>
         <translation>Datei geändert</translation>
     </message>
@@ -78010,17 +78005,17 @@
         <translation>&lt;b&gt;Zeilenende Marke umwandeln&lt;/b&gt;&lt;p&gt;Dies wandelt die Zeilenende Marke in den aktuell eingestellten Typ um.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3599"/>
+        <location filename="../ViewManager/ViewManager.py" line="3623"/>
         <source>Toggle current fold</source>
         <translation>Aktuelle Faltung umschalten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3595"/>
+        <location filename="../ViewManager/ViewManager.py" line="3619"/>
         <source>Toggle &amp;current fold</source>
         <translation>Aktuelle &amp;Faltung umschalten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3601"/>
+        <location filename="../ViewManager/ViewManager.py" line="3625"/>
         <source>&lt;b&gt;Toggle current fold&lt;/b&gt;&lt;p&gt;Toggle the folds of the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aktuelle Faltung umschalten&lt;/b&gt;&lt;p&gt;Dies schaltet die Faltung der aktuellen Zeile des aktuellen Editors um.&lt;/p&gt;</translation>
     </message>
@@ -78065,32 +78060,32 @@
         <translation>Aus&amp;wahl aufheben</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom in</source>
         <translation>Vergrößern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom &amp;in</source>
         <translation>Ver&amp;größern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom out</source>
         <translation>Verkleinern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom &amp;out</source>
         <translation>Ver&amp;kleinern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3498"/>
+        <location filename="../ViewManager/ViewManager.py" line="3522"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vergrößern&lt;/b&gt;&lt;p&gt;Den angezeigten Text vergrößern.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3517"/>
+        <location filename="../ViewManager/ViewManager.py" line="3541"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Verkleinern&lt;/b&gt;&lt;p&gt;Den angezeigten Text verkleinern.&lt;/p&gt;</translation>
     </message>
@@ -78110,37 +78105,37 @@
         <translation>Text bis zur passenden Klammer auswählen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <location filename="../ViewManager/ViewManager.py" line="3203"/>
         <source>Goto Brace</source>
         <translation>Gehe zu Klammer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <location filename="../ViewManager/ViewManager.py" line="3195"/>
         <source>Goto &amp;Brace</source>
         <translation>Gehe zu &amp;Klammer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3181"/>
+        <location filename="../ViewManager/ViewManager.py" line="3205"/>
         <source>&lt;b&gt;Goto Brace&lt;/b&gt;&lt;p&gt;Go to the matching brace in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gehe zu Klammer&lt;/b&gt;&lt;p&gt;Gehe zur passenden Klammer im aktuellen Editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Search in Files</source>
         <translation>Suchen in Dateien</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Search in &amp;Files...</source>
         <translation>Suchen in &amp;Dateien...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3267"/>
+        <location filename="../ViewManager/ViewManager.py" line="3291"/>
         <source>Search for a text in files</source>
         <translation>Nach Text in Dateien suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3269"/>
+        <location filename="../ViewManager/ViewManager.py" line="3293"/>
         <source>&lt;b&gt;Search in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Suchen in Dateien&lt;/b&gt;&lt;p&gt;Sucht nach Text in den Dateien eines Verzeichnisbaumes oder des Projektes. Es wird ein Dialog angezeigt, in dem der Suchtext und die Suchoptionen eingegeben werden können und in dem das Suchresultat angezeigt wird.&lt;/p&gt;</translation>
     </message>
@@ -78190,707 +78185,707 @@
         <translation>&lt;b&gt;Zurück zum letzten gesichert Zustand&lt;/b&gt;&lt;p&gt;Dies nimmt alle Änderungen des aktuellen Editors bis zum letzten gesicherten Zustand zurück.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3703"/>
         <source>Split view</source>
         <translation>Ansicht aufteilen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3703"/>
         <source>&amp;Split view</source>
         <translation>An&amp;sicht aufteilen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3684"/>
+        <location filename="../ViewManager/ViewManager.py" line="3708"/>
         <source>Add a split to the view</source>
         <translation>Fügt eine weiter Ansicht hinzu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3686"/>
+        <location filename="../ViewManager/ViewManager.py" line="3710"/>
         <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ansicht aufteilen&lt;/b&gt;&lt;p&gt;Fügt eine weitere Ansicht hinzu.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3694"/>
+        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>Arrange horizontally</source>
         <translation>Horizontal anordnen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3694"/>
+        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>Arrange &amp;horizontally</source>
         <translation>&amp;Horizontal anordnen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3698"/>
+        <location filename="../ViewManager/ViewManager.py" line="3722"/>
         <source>Arrange the splitted views horizontally</source>
         <translation>Ordnet die geteilten Ansichten horizontal an</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3700"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Horizontal anordnen&lt;/b&gt;&lt;p&gt;Ordnet die geteilten Ansichten horizontal an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3709"/>
+        <location filename="../ViewManager/ViewManager.py" line="3733"/>
         <source>Remove split</source>
         <translation>Geteilte Ansicht löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3709"/>
+        <location filename="../ViewManager/ViewManager.py" line="3733"/>
         <source>&amp;Remove split</source>
         <translation>Geteilte Ansicht &amp;löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3714"/>
+        <location filename="../ViewManager/ViewManager.py" line="3738"/>
         <source>Remove the current split</source>
         <translation>Löscht die aktuelle Ansicht</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3716"/>
+        <location filename="../ViewManager/ViewManager.py" line="3740"/>
         <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Geteilte Ansicht löschen&lt;/b&gt;&lt;p&gt;Löscht die aktuelle Ansicht&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Move left one character</source>
         <translation>Ein Zeichen nach links</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Left</source>
         <translation>Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1494"/>
+        <location filename="../ViewManager/ViewManager.py" line="1516"/>
         <source>Move right one character</source>
         <translation>Ein Zeichen nach rechts</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1494"/>
+        <location filename="../ViewManager/ViewManager.py" line="1516"/>
         <source>Right</source>
         <translation>Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1508"/>
+        <location filename="../ViewManager/ViewManager.py" line="1530"/>
         <source>Move up one line</source>
         <translation>Eine Zeile nach oben</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1508"/>
+        <location filename="../ViewManager/ViewManager.py" line="1530"/>
         <source>Up</source>
         <translation>Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1520"/>
+        <location filename="../ViewManager/ViewManager.py" line="1542"/>
         <source>Move down one line</source>
         <translation>Eine Zeile nach unten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1520"/>
+        <location filename="../ViewManager/ViewManager.py" line="1542"/>
         <source>Down</source>
         <translation>Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1532"/>
+        <location filename="../ViewManager/ViewManager.py" line="1554"/>
         <source>Move left one word part</source>
         <translation>Ein Wortteil nach links</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1566"/>
+        <location filename="../ViewManager/ViewManager.py" line="1588"/>
         <source>Alt+Left</source>
         <translation>Alt+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1546"/>
+        <location filename="../ViewManager/ViewManager.py" line="1568"/>
         <source>Move right one word part</source>
         <translation>Ein Wortteil nach rechts</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2446"/>
+        <location filename="../ViewManager/ViewManager.py" line="2468"/>
         <source>Alt+Right</source>
         <translation>Alt+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1560"/>
+        <location filename="../ViewManager/ViewManager.py" line="1582"/>
         <source>Move left one word</source>
         <translation>Ein Wort nach links</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1611"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Ctrl+Left</source>
         <translation>Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1575"/>
+        <location filename="../ViewManager/ViewManager.py" line="1597"/>
         <source>Move right one word</source>
         <translation>Ein Wort nach rechts</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2200"/>
+        <location filename="../ViewManager/ViewManager.py" line="2222"/>
         <source>Ctrl+Right</source>
         <translation>Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2401"/>
+        <location filename="../ViewManager/ViewManager.py" line="2423"/>
         <source>Home</source>
         <translation>Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1614"/>
+        <location filename="../ViewManager/ViewManager.py" line="1636"/>
         <source>Alt+Home</source>
         <translation>Alt+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2416"/>
+        <location filename="../ViewManager/ViewManager.py" line="2438"/>
         <source>End</source>
         <translation>End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1637"/>
+        <location filename="../ViewManager/ViewManager.py" line="1659"/>
         <source>Scroll view down one line</source>
         <translation>Eine Zeile nach unten rollen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1749"/>
         <source>Ctrl+Down</source>
         <translation>Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1649"/>
+        <location filename="../ViewManager/ViewManager.py" line="1671"/>
         <source>Scroll view up one line</source>
         <translation>Eine Zeile nach oben rollen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1710"/>
+        <location filename="../ViewManager/ViewManager.py" line="1732"/>
         <source>Ctrl+Up</source>
         <translation>Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1660"/>
+        <location filename="../ViewManager/ViewManager.py" line="1682"/>
         <source>Move up one paragraph</source>
         <translation>Einen Absatz nach oben</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1660"/>
+        <location filename="../ViewManager/ViewManager.py" line="1682"/>
         <source>Alt+Up</source>
         <translation>Alt+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1669"/>
+        <location filename="../ViewManager/ViewManager.py" line="1691"/>
         <source>Move down one paragraph</source>
         <translation>Einen Absatz nach unten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1669"/>
+        <location filename="../ViewManager/ViewManager.py" line="1691"/>
         <source>Alt+Down</source>
         <translation>Alt+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1681"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>Move up one page</source>
         <translation>Eine Seite hoch</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1681"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>PgUp</source>
         <translation>PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1690"/>
+        <location filename="../ViewManager/ViewManager.py" line="1712"/>
         <source>Move down one page</source>
         <translation>Eine Seite nach unten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1690"/>
+        <location filename="../ViewManager/ViewManager.py" line="1712"/>
         <source>PgDown</source>
         <translation>PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1713"/>
+        <location filename="../ViewManager/ViewManager.py" line="1735"/>
         <source>Ctrl+Home</source>
         <translation>Ctrl+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1730"/>
+        <location filename="../ViewManager/ViewManager.py" line="1752"/>
         <source>Ctrl+End</source>
         <translation>Ctrl+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Indent one level</source>
         <translation>Eine Ebene einrücken</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Tab</source>
         <translation>Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1745"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Unindent one level</source>
         <translation>Eine Ebene ausrücken</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1745"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Shift+Tab</source>
         <translation>Shift+Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1755"/>
+        <location filename="../ViewManager/ViewManager.py" line="1777"/>
         <source>Extend selection left one character</source>
         <translation>Auswahl um ein Zeichen nach links erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1755"/>
+        <location filename="../ViewManager/ViewManager.py" line="1777"/>
         <source>Shift+Left</source>
         <translation>Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1770"/>
+        <location filename="../ViewManager/ViewManager.py" line="1792"/>
         <source>Extend selection right one character</source>
         <translation>Auswahl um ein Zeichen nach rechts erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1770"/>
+        <location filename="../ViewManager/ViewManager.py" line="1792"/>
         <source>Shift+Right</source>
         <translation>Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1785"/>
+        <location filename="../ViewManager/ViewManager.py" line="1807"/>
         <source>Extend selection up one line</source>
         <translation>Auswahl um eine Zeile nach oben erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1785"/>
+        <location filename="../ViewManager/ViewManager.py" line="1807"/>
         <source>Shift+Up</source>
         <translation>Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1800"/>
+        <location filename="../ViewManager/ViewManager.py" line="1822"/>
         <source>Extend selection down one line</source>
         <translation>Auswahl um eine Zeile nach unten erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1800"/>
+        <location filename="../ViewManager/ViewManager.py" line="1822"/>
         <source>Shift+Down</source>
         <translation>Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1815"/>
+        <location filename="../ViewManager/ViewManager.py" line="1837"/>
         <source>Extend selection left one word part</source>
         <translation>Auswahl um einen Wortteil nach links erweitern</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="1873"/>
+        <source>Alt+Shift+Left</source>
+        <translation>Alt+Shift+Left</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="1851"/>
-        <source>Alt+Shift+Left</source>
-        <translation>Alt+Shift+Left</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1829"/>
         <source>Extend selection right one word part</source>
         <translation>Auswahl um einen Wortteil nach rechts erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2461"/>
+        <location filename="../ViewManager/ViewManager.py" line="2483"/>
         <source>Alt+Shift+Right</source>
         <translation>Alt+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1843"/>
+        <location filename="../ViewManager/ViewManager.py" line="1865"/>
         <source>Extend selection left one word</source>
         <translation>Auswahl um ein Wort nach links erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2555"/>
+        <location filename="../ViewManager/ViewManager.py" line="2577"/>
         <source>Ctrl+Shift+Left</source>
         <translation>Ctrl+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1860"/>
+        <location filename="../ViewManager/ViewManager.py" line="1882"/>
         <source>Extend selection right one word</source>
         <translation>Auswahl um ein Wort nach rechts erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2217"/>
+        <location filename="../ViewManager/ViewManager.py" line="2239"/>
         <source>Ctrl+Shift+Right</source>
         <translation>Ctrl+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1889"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Shift+Home</source>
         <translation>Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2321"/>
+        <location filename="../ViewManager/ViewManager.py" line="2343"/>
         <source>Alt+Shift+Home</source>
         <translation>Alt+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1906"/>
+        <location filename="../ViewManager/ViewManager.py" line="1928"/>
         <source>Shift+End</source>
         <translation>Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1912"/>
+        <location filename="../ViewManager/ViewManager.py" line="1934"/>
         <source>Extend selection up one paragraph</source>
         <translation>Auswahl um einen Absatz nach oben erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1912"/>
+        <location filename="../ViewManager/ViewManager.py" line="1934"/>
         <source>Alt+Shift+Up</source>
         <translation>Alt+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1925"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Extend selection down one paragraph</source>
         <translation>Auswahl um einen Absatz nach unten erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1925"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Alt+Shift+Down</source>
         <translation>Alt+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Extend selection up one page</source>
         <translation>Auswahl um eine Seite nach oben erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Shift+PgUp</source>
         <translation>Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1950"/>
+        <location filename="../ViewManager/ViewManager.py" line="1972"/>
         <source>Extend selection down one page</source>
         <translation>Auswahl um eine Seite nach unten erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1950"/>
+        <location filename="../ViewManager/ViewManager.py" line="1972"/>
         <source>Shift+PgDown</source>
         <translation>Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1977"/>
+        <location filename="../ViewManager/ViewManager.py" line="1999"/>
         <source>Ctrl+Shift+Home</source>
         <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2016"/>
         <source>Ctrl+Shift+End</source>
         <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2000"/>
+        <location filename="../ViewManager/ViewManager.py" line="2022"/>
         <source>Delete previous character</source>
         <translation>Zeichen links löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2000"/>
+        <location filename="../ViewManager/ViewManager.py" line="2022"/>
         <source>Backspace</source>
         <translation>Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2031"/>
+        <location filename="../ViewManager/ViewManager.py" line="2053"/>
         <source>Delete current character</source>
         <translation>Aktuelles Zeichen löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2031"/>
+        <location filename="../ViewManager/ViewManager.py" line="2053"/>
         <source>Del</source>
         <translation>Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2045"/>
+        <location filename="../ViewManager/ViewManager.py" line="2067"/>
         <source>Delete word to left</source>
         <translation>Wort links löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2045"/>
+        <location filename="../ViewManager/ViewManager.py" line="2067"/>
         <source>Ctrl+Backspace</source>
         <translation>Ctrl+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2056"/>
+        <location filename="../ViewManager/ViewManager.py" line="2078"/>
         <source>Delete word to right</source>
         <translation>Wort rechts löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2056"/>
+        <location filename="../ViewManager/ViewManager.py" line="2078"/>
         <source>Ctrl+Del</source>
         <translation>Ctrl+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2066"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Delete line to left</source>
         <translation>Zeile links löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2066"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation>Ctrl+Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2077"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Delete line to right</source>
         <translation>Zeile rechts löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2086"/>
+        <location filename="../ViewManager/ViewManager.py" line="2108"/>
         <source>Ctrl+Shift+Del</source>
         <translation>Ctrl+Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Insert new line</source>
         <translation>Neue Zeile einfügen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Return</source>
         <translation>Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2115"/>
-        <source>Delete current line</source>
-        <translation>Aktuelle Zeile löschen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2115"/>
-        <source>Ctrl+Shift+L</source>
-        <translation>Ctrl+Shift+L</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2126"/>
-        <source>Duplicate current line</source>
-        <translation>Aktuelle Zeile duplizieren</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2126"/>
-        <source>Ctrl+D</source>
-        <translation>Ctrl+D</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2137"/>
-        <source>Swap current and previous lines</source>
-        <translation>Aktuelle Zeile mit vorhergehender tauschen</translation>
+        <source>Delete current line</source>
+        <translation>Aktuelle Zeile löschen</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="2137"/>
+        <source>Ctrl+Shift+L</source>
+        <translation>Ctrl+Shift+L</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <source>Duplicate current line</source>
+        <translation>Aktuelle Zeile duplizieren</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <source>Ctrl+D</source>
+        <translation>Ctrl+D</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2159"/>
+        <source>Swap current and previous lines</source>
+        <translation>Aktuelle Zeile mit vorhergehender tauschen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2159"/>
         <source>Ctrl+T</source>
         <translation>Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2160"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Cut current line</source>
         <translation>Aktuelle Zeile ausschneiden</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2160"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Alt+Shift+L</source>
         <translation>Alt+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2170"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Copy current line</source>
         <translation>Aktuelle Zeile kopieren</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2170"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Ctrl+Shift+T</source>
         <translation>Ctrl+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
+        <location filename="../ViewManager/ViewManager.py" line="2203"/>
         <source>Toggle insert/overtype</source>
         <translation>Einfügen/Überschreiben umschalten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
+        <location filename="../ViewManager/ViewManager.py" line="2203"/>
         <source>Ins</source>
         <translation>Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2745"/>
+        <location filename="../ViewManager/ViewManager.py" line="2767"/>
         <source>Convert selection to lower case</source>
         <translation>Auswahl in Kleinbuchstaben umwandeln</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2745"/>
+        <location filename="../ViewManager/ViewManager.py" line="2767"/>
         <source>Alt+Shift+U</source>
         <translation>Alt+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2757"/>
+        <location filename="../ViewManager/ViewManager.py" line="2779"/>
         <source>Convert selection to upper case</source>
         <translation>Auswahl in Großbuchstaben umwandeln</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2757"/>
+        <location filename="../ViewManager/ViewManager.py" line="2779"/>
         <source>Ctrl+Shift+U</source>
         <translation>Ctrl+Shift+U</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3906"/>
-        <source>Start Macro Recording</source>
-        <translation>Makroaufzeichnung starten</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3900"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation>Makroaufzeichnung s&amp;tarten</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3908"/>
-        <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Makroaufzeichnung starten&lt;/b&gt;&lt;p&gt;Startet die Aufzeichnung von Editorbefehlen in ein neues Makro.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
-        <source>Stop Macro Recording</source>
-        <translation>Makroaufzeichnung stoppen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3916"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation>Makroaufzeichnung sto&amp;ppen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3922"/>
-        <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Makroaufzeichnung stoppen&lt;/b&gt;&lt;p&gt;Stopt die Aufzeichnung von Editorbefehlen in ein neues Makro.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3934"/>
-        <source>Run Macro</source>
-        <translation>Makro ausführen</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3930"/>
-        <source>&amp;Run Macro</source>
-        <translation>Makro &amp;ausführen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3936"/>
-        <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Makro ausführen&lt;/b&gt;&lt;p&gt;Führt ein vorher aufgezeichnetes Makro aus.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3948"/>
-        <source>Delete Macro</source>
-        <translation>Makro löschen</translation>
+        <source>Start Macro Recording</source>
+        <translation>Makroaufzeichnung starten</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3924"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation>Makroaufzeichnung s&amp;tarten</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3932"/>
+        <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Makroaufzeichnung starten&lt;/b&gt;&lt;p&gt;Startet die Aufzeichnung von Editorbefehlen in ein neues Makro.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3944"/>
-        <source>&amp;Delete Macro</source>
-        <translation>Makro &amp;löschen</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3950"/>
-        <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Makro löschen&lt;/b&gt;&lt;p&gt;Löscht ein vorher aufgezeichnetes Makro.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3962"/>
-        <source>Load Macro</source>
-        <translation>Makro laden</translation>
+        <source>Stop Macro Recording</source>
+        <translation>Makroaufzeichnung stoppen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3940"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation>Makroaufzeichnung sto&amp;ppen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3946"/>
+        <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Makroaufzeichnung stoppen&lt;/b&gt;&lt;p&gt;Stopt die Aufzeichnung von Editorbefehlen in ein neues Makro.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3958"/>
-        <source>&amp;Load Macro</source>
-        <translation>Makro la&amp;den</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3976"/>
-        <source>Save Macro</source>
-        <translation>Makro speichern</translation>
+        <source>Run Macro</source>
+        <translation>Makro ausführen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3954"/>
+        <source>&amp;Run Macro</source>
+        <translation>Makro &amp;ausführen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3960"/>
+        <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Makro ausführen&lt;/b&gt;&lt;p&gt;Führt ein vorher aufgezeichnetes Makro aus.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3972"/>
+        <source>Delete Macro</source>
+        <translation>Makro löschen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3968"/>
+        <source>&amp;Delete Macro</source>
+        <translation>Makro &amp;löschen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3974"/>
+        <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Makro löschen&lt;/b&gt;&lt;p&gt;Löscht ein vorher aufgezeichnetes Makro.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3986"/>
+        <source>Load Macro</source>
+        <translation>Makro laden</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3982"/>
+        <source>&amp;Load Macro</source>
+        <translation>Makro la&amp;den</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4000"/>
+        <source>Save Macro</source>
+        <translation>Makro speichern</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3996"/>
         <source>&amp;Save Macro</source>
         <translation>Makro &amp;speichern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3964"/>
+        <location filename="../ViewManager/ViewManager.py" line="3988"/>
         <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Makro laden&lt;/b&gt;&lt;p&gt;Lädt ein Makro aus einer Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3978"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Makro speichern&lt;/b&gt;&lt;p&gt;Speichert ein vorher aufgezeichnetes Makro in eine Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4020"/>
+        <location filename="../ViewManager/ViewManager.py" line="4044"/>
         <source>Toggle Bookmark</source>
         <translation>Lesezeichen setzen/löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
         <source>&amp;Toggle Bookmark</source>
         <translation>&amp;Lesezeichen setzen/löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4022"/>
+        <location filename="../ViewManager/ViewManager.py" line="4046"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Lesezeichen setzen/löschen&lt;/b&gt;&lt;p&gt;Setzt/löscht ein Lesezeichen in der aktuellen Zeile des aktuellen Editors.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4039"/>
+        <location filename="../ViewManager/ViewManager.py" line="4063"/>
         <source>Next Bookmark</source>
         <translation>Nächstes Lesezeichen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>&amp;Next Bookmark</source>
         <translation>&amp;Nächstes Lesezeichen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4041"/>
+        <location filename="../ViewManager/ViewManager.py" line="4065"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nächstes Lesezeichen&lt;/b&gt;&lt;p&gt;Gehe zum nächsten Lesezeichen des aktuellen Editors.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <location filename="../ViewManager/ViewManager.py" line="4081"/>
         <source>Previous Bookmark</source>
         <translation>Vorheriges Lesezeichen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <location filename="../ViewManager/ViewManager.py" line="4073"/>
         <source>&amp;Previous Bookmark</source>
         <translation>&amp;Vorheriges Lesezeichen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4059"/>
+        <location filename="../ViewManager/ViewManager.py" line="4083"/>
         <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vorheriges Lesezeichen&lt;/b&gt;&lt;p&gt;Gehe zum vorherigen Lesezeichen des aktuellen Editors.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4074"/>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <source>Clear Bookmarks</source>
         <translation>Lesezeichen löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4091"/>
         <source>&amp;Clear Bookmarks</source>
         <translation>Lesezeichen l&amp;öschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4076"/>
+        <location filename="../ViewManager/ViewManager.py" line="4100"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Lesezeichen löschen&lt;/b&gt;&lt;p&gt;Lesezeichen aller Editoren löschen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4285"/>
+        <location filename="../ViewManager/ViewManager.py" line="4309"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Lesezeichen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3631"/>
+        <location filename="../ViewManager/ViewManager.py" line="3655"/>
         <source>Remove all highlights</source>
         <translation>Hervorhebungen löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3633"/>
+        <location filename="../ViewManager/ViewManager.py" line="3657"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Hervorhebungen löschen&lt;/b&gt;&lt;p&gt;Hervorhebungen aller Editoren löschen.&lt;/p&gt;</translation>
     </message>
@@ -78900,77 +78895,77 @@
         <translation>Ge&amp;merkte Dateien</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5371"/>
+        <location filename="../ViewManager/ViewManager.py" line="5395"/>
         <source>&amp;Clear</source>
         <translation>&amp;Löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5365"/>
+        <location filename="../ViewManager/ViewManager.py" line="5389"/>
         <source>&amp;Add</source>
         <translation>&amp;Hinzufügen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5368"/>
+        <location filename="../ViewManager/ViewManager.py" line="5392"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Bearbeiten...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2241"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Extend rectangular selection down one line</source>
         <translation>Rechteckige Auswahl um eine Zeile nach unten erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2241"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Alt+Ctrl+Down</source>
         <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2257"/>
+        <location filename="../ViewManager/ViewManager.py" line="2279"/>
         <source>Extend rectangular selection up one line</source>
         <translation>Rechteckige Auswahl um eine Zeile nach oben erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2257"/>
+        <location filename="../ViewManager/ViewManager.py" line="2279"/>
         <source>Alt+Ctrl+Up</source>
         <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2272"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Extend rectangular selection left one character</source>
         <translation>Rechteckige Auswahl um ein Zeichen nach links erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2272"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Alt+Ctrl+Left</source>
         <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2290"/>
+        <location filename="../ViewManager/ViewManager.py" line="2312"/>
         <source>Extend rectangular selection right one character</source>
         <translation>Rechteckige Auswahl um ein Zeichen nach rechts erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2290"/>
+        <location filename="../ViewManager/ViewManager.py" line="2312"/>
         <source>Alt+Ctrl+Right</source>
         <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2346"/>
+        <location filename="../ViewManager/ViewManager.py" line="2368"/>
         <source>Extend rectangular selection up one page</source>
         <translation>Rechteckige Auswahl um eine Seite nach oben erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2361"/>
+        <location filename="../ViewManager/ViewManager.py" line="2383"/>
         <source>Extend rectangular selection down one page</source>
         <translation>Rechteckige Auswahl um eine Seite nach unten erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2203"/>
+        <location filename="../ViewManager/ViewManager.py" line="2225"/>
         <source>Alt+End</source>
         <translation>Alt+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2223"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <source>Formfeed</source>
         <translation>Seitenumbruch</translation>
     </message>
@@ -78985,42 +78980,42 @@
         <translation>&lt;b&gt;Leere Zeilen verkürzen&lt;/b&gt;&lt;p&gt;Zeilen, die nur aus Leerzeichen und Tabulatoren bestehen, werden verkürzt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2232"/>
+        <location filename="../ViewManager/ViewManager.py" line="2254"/>
         <source>Escape</source>
         <translation>Abbruch</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2232"/>
+        <location filename="../ViewManager/ViewManager.py" line="2254"/>
         <source>Esc</source>
         <translation>Esc</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <location filename="../ViewManager/ViewManager.py" line="4114"/>
         <source>Goto Syntax Error</source>
         <translation>Zu Syntaxfehler gehen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4084"/>
+        <location filename="../ViewManager/ViewManager.py" line="4108"/>
         <source>&amp;Goto Syntax Error</source>
         <translation>Zu Syntaxfehler &amp;gehen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4092"/>
+        <location filename="../ViewManager/ViewManager.py" line="4116"/>
         <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zu Syntaxfehler gehen&lt;/b&gt;&lt;p&gt;Gehe zum nächsten Syntaxfehler des aktuellen Editors.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4105"/>
+        <location filename="../ViewManager/ViewManager.py" line="4129"/>
         <source>Clear Syntax Errors</source>
         <translation>Syntaxfehler löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4100"/>
+        <location filename="../ViewManager/ViewManager.py" line="4124"/>
         <source>Clear &amp;Syntax Errors</source>
         <translation>Synta&amp;xfehler löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4107"/>
+        <location filename="../ViewManager/ViewManager.py" line="4131"/>
         <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Syntaxfehler löschen&lt;/b&gt;&lt;p&gt;Syntaxfehler aller Editoren löschen.&lt;/p&gt;</translation>
     </message>
@@ -79045,32 +79040,32 @@
         <translation>&lt;b&gt;Datei suchen&lt;/b&gt;&lt;p&gt;Nach einer Datei suchen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4175"/>
+        <location filename="../ViewManager/ViewManager.py" line="4199"/>
         <source>Next uncovered line</source>
         <translation>Nächste nichtabgedeckte Zeile</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4169"/>
+        <location filename="../ViewManager/ViewManager.py" line="4193"/>
         <source>&amp;Next uncovered line</source>
         <translation>&amp;Nächste nichtabgedeckte Zeile</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4177"/>
+        <location filename="../ViewManager/ViewManager.py" line="4201"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nächste nichtabgedeckte Zeile&lt;/b&gt;&lt;p&gt;Gehe zur nächsten als nicht abgedeckt markierten Zeile des aktiven Editors.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4194"/>
+        <location filename="../ViewManager/ViewManager.py" line="4218"/>
         <source>Previous uncovered line</source>
         <translation>Vorige nichtabgedeckte Zeile</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4186"/>
+        <location filename="../ViewManager/ViewManager.py" line="4210"/>
         <source>&amp;Previous uncovered line</source>
         <translation>&amp;Vorige nichtabgedeckte Zeile</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4196"/>
+        <location filename="../ViewManager/ViewManager.py" line="4220"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vorige nichtabgedeckte Zeile&lt;/b&gt;&lt;p&gt;Gehe zur vorigen als nicht abgedeckt markierten Zeile des aktiven Editors.&lt;/p&gt;</translation>
     </message>
@@ -79093,12 +79088,12 @@
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2012"/>
+        <location filename="../ViewManager/ViewManager.py" line="2034"/>
         <source>Shift+Backspace</source>
         <translation>Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4527"/>
+        <location filename="../ViewManager/ViewManager.py" line="4551"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Datei &lt;b&gt;{0}&lt;/b&gt; enthält ungesicherte Änderungen.&lt;/p&gt;</translation>
     </message>
@@ -79113,70 +79108,70 @@
         <translation>&lt;b&gt;Datei öffnen&lt;/b&gt;&lt;p&gt;Sie werden nach dem Namen einer Datei gefragt, die in einem Editor geöffnet werden soll.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3387"/>
+        <location filename="../ViewManager/ViewManager.py" line="3411"/>
         <source>Quicksearch</source>
         <translation>Schnellsuche</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3088"/>
+        <location filename="../ViewManager/ViewManager.py" line="3112"/>
         <source>Ctrl+Shift+K</source>
         <comment>Search|Quicksearch</comment>
         <translation>Ctrl+Shift+K</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3096"/>
+        <location filename="../ViewManager/ViewManager.py" line="3120"/>
         <source>Perform a quicksearch</source>
         <translation>Führe eine Schnellsuche durch</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <source>Quicksearch backwards</source>
         <translation>Schnellsuche rückwärts</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <source>Ctrl+Shift+J</source>
         <comment>Search|Quicksearch backwards</comment>
         <translation>Ctrl+Shift+J</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3119"/>
+        <location filename="../ViewManager/ViewManager.py" line="3143"/>
         <source>Perform a quicksearch backwards</source>
         <translation>Führe eine Schnellsuche rückwärts durch</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3088"/>
+        <location filename="../ViewManager/ViewManager.py" line="3112"/>
         <source>&amp;Quicksearch</source>
         <translation>Schne&amp;llsuche</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <source>Quicksearch &amp;backwards</source>
         <translation>Schnellsuche &amp;rückwärts</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Quicksearch extend</source>
         <translation>Schnellsuche erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Quicksearch e&amp;xtend</source>
         <translation>Schnellsuche er&amp;weitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Ctrl+Shift+H</source>
         <comment>Search|Quicksearch extend</comment>
         <translation>Ctrl+Shift+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3139"/>
+        <location filename="../ViewManager/ViewManager.py" line="3163"/>
         <source>Extend the quicksearch to the end of the current word</source>
         <translation>Erweitere die Schnellsuche bis zum Ende des aktuellen Wortes</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3142"/>
+        <location filename="../ViewManager/ViewManager.py" line="3166"/>
         <source>&lt;b&gt;Quicksearch extend&lt;/b&gt;&lt;p&gt;This extends the quicksearch text to the end of the word currently found.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Schnellsuche erweitern&lt;/b&gt;&lt;p&gt;Dies erweitert den Schnellsuchetext bis zum Ende des aktuell gefundenen Wortes.&lt;/p&gt;</translation>
     </message>
@@ -79196,72 +79191,72 @@
         <translation>&lt;b&gt;Überwachte Einrückung&lt;/b&gt;&lt;p&gt;Dies rückt die aktuelle Zeile oder die Zeilen der aktuellen Auswahl ein, wobei nur sinnvolle Einrückungstiefen erlaubt sind.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3724"/>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
         <source>Next split</source>
         <translation>Nächste Ansichte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3724"/>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
         <source>&amp;Next split</source>
         <translation>&amp;Nächste Ansicht</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3731"/>
+        <location filename="../ViewManager/ViewManager.py" line="3755"/>
         <source>Move to the next split</source>
         <translation>Gehe zur nächsten Ansicht</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3733"/>
+        <location filename="../ViewManager/ViewManager.py" line="3757"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nächste Ansicht&lt;/b&gt;&lt;p&gt;Gehe zur nächsten Ansicht.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>Previous split</source>
         <translation>Vorherige Ansicht</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>&amp;Previous split</source>
         <translation>&amp;Vorherige Ansicht</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3747"/>
+        <location filename="../ViewManager/ViewManager.py" line="3771"/>
         <source>Move to the previous split</source>
         <translation>Gehe zur vorherigen Ansicht</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3749"/>
+        <location filename="../ViewManager/ViewManager.py" line="3773"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vorherige Ansicht&lt;/b&gt;&lt;p&gt;Gehe zur vorherigen Ansicht.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Enter</source>
         <translation>Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <location filename="../ViewManager/ViewManager.py" line="3607"/>
         <source>Toggle all folds (including children)</source>
         <translation>Alle Faltungen umschalten (inkl. Unterfaltungen)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3577"/>
+        <location filename="../ViewManager/ViewManager.py" line="3601"/>
         <source>Toggle all &amp;folds (including children)</source>
         <translation>Alle Faltungen &amp;umschalten (inkl. Unterfaltungen)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3585"/>
+        <location filename="../ViewManager/ViewManager.py" line="3609"/>
         <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alle Faltungen umschalten (inkl. Unterfaltungen)&lt;/b&gt;&lt;p&gt;Dies schaltet alle Faltungen des aktuellen Editors inklusive Unterfaltungen um.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2379"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Duplicate current selection</source>
         <translation>Aktuelle Auswahl duplizieren</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2379"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Ctrl+Shift+D</source>
         <translation>Ctrl+Shift+D</translation>
     </message>
@@ -79408,187 +79403,187 @@
         <translation>Alt+Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2786"/>
+        <location filename="../ViewManager/ViewManager.py" line="2808"/>
         <source>&amp;Edit</source>
         <translation>&amp;Bearbeiten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2843"/>
+        <location filename="../ViewManager/ViewManager.py" line="2867"/>
         <source>Edit</source>
         <translation>Bearbeiten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2875"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation>Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation>Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <location filename="../ViewManager/ViewManager.py" line="3176"/>
         <source>Ctrl+G</source>
         <comment>Search|Goto Line</comment>
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <location filename="../ViewManager/ViewManager.py" line="3195"/>
         <source>Ctrl+L</source>
         <comment>Search|Goto Brace</comment>
         <translation>Ctrl+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation>Shift+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation>Ctrl+#</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3724"/>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation>Ctrl+Alt+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation>Ctrl+Alt+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3833"/>
+        <location filename="../ViewManager/ViewManager.py" line="3857"/>
         <source>&amp;View</source>
         <translation>&amp;Ansicht</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3870"/>
+        <location filename="../ViewManager/ViewManager.py" line="3894"/>
         <source>View</source>
         <translation>Ansicht</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3994"/>
+        <location filename="../ViewManager/ViewManager.py" line="4018"/>
         <source>&amp;Macros</source>
         <translation>&amp;Makros</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation>Alt+Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation>Ctrl+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <location filename="../ViewManager/ViewManager.py" line="4073"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation>Ctrl+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4091"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation>Alt+Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4355"/>
         <source>Bookmarks</source>
         <translation>Lesezeichen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4483"/>
+        <location filename="../ViewManager/ViewManager.py" line="4507"/>
         <source>Open files</source>
         <translation>Dateien öffnen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4236"/>
         <source>Next Task</source>
         <translation>Nächste Aufgabe</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4206"/>
+        <location filename="../ViewManager/ViewManager.py" line="4230"/>
         <source>&amp;Next Task</source>
         <translation>&amp;Nächste Aufgabe</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4214"/>
+        <location filename="../ViewManager/ViewManager.py" line="4238"/>
         <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nächste Aufgabe&lt;/b&gt;&lt;p&gt;Gehe zur nächsten Zeile des aktuellen Editors, die eine Aufgabe enthält.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4229"/>
+        <location filename="../ViewManager/ViewManager.py" line="4253"/>
         <source>Previous Task</source>
         <translation>Vorherige Aufgabe</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4222"/>
+        <location filename="../ViewManager/ViewManager.py" line="4246"/>
         <source>&amp;Previous Task</source>
         <translation>&amp;Vorherige Aufgabe</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4255"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vorherige Aufgabe&lt;/b&gt;&lt;p&gt;Gehe zur vorherigen Zeile des aktuellen Editors, die eine Aufgabe enthält.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3352"/>
+        <location filename="../ViewManager/ViewManager.py" line="3376"/>
         <source>&amp;Search</source>
         <translation>&amp;Suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Search next</source>
         <translation>Weitersuchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Search &amp;next</source>
         <translation>&amp;Weitersuchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation>F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Search previous</source>
         <translation>Rückwärtssuchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Search &amp;previous</source>
         <translation>&amp;Rückwärtssuchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation>Shift+F3</translation>
@@ -79614,63 +79609,63 @@
         <translation>Exportieren als</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3433"/>
+        <location filename="../ViewManager/ViewManager.py" line="3457"/>
         <source>Quicksearch Textedit</source>
         <translation>Texteingabe für Schnellsuche</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2936"/>
+        <location filename="../ViewManager/ViewManager.py" line="2960"/>
         <source>Clear search markers</source>
         <translation>Suchmarkierungen löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2936"/>
+        <location filename="../ViewManager/ViewManager.py" line="2960"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation>Ctrl+3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2944"/>
+        <location filename="../ViewManager/ViewManager.py" line="2968"/>
         <source>Clear all displayed search markers</source>
         <translation>Löscht alle angezeigten Suchmarkierungen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2946"/>
+        <location filename="../ViewManager/ViewManager.py" line="2970"/>
         <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Suchmarkierungen löschen&lt;/b&gt;&lt;p&gt;Löscht alle angezeigten Suchmarkierungen.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2904"/>
+        <location filename="../ViewManager/ViewManager.py" line="2928"/>
         <source>Search next occurrence of text</source>
         <translation>Das nächste Vorkommen des Textes in der Seite suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2906"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Weitersuchen&lt;/b&gt;&lt;p&gt;Nach der nächsten Textstelle im aktuellen Editor suchen. Der zuvor eingegebene Suchtext und die Suchoptionen werden weiterverwendet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2924"/>
+        <location filename="../ViewManager/ViewManager.py" line="2948"/>
         <source>Search previous occurrence of text</source>
         <translation>Das vorherige Vorkommen des Textes in der Seite suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2926"/>
+        <location filename="../ViewManager/ViewManager.py" line="2950"/>
         <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rückwärtssuchen&lt;/b&gt;&lt;p&gt;Nach der vorherigen Textstelle im aktuellen Editor suchen. Der zuvor eingegebene Suchtext und die Suchoptionen werden weiterverwendet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3098"/>
-        <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Schnellsuche&lt;/b&gt;&lt;p&gt;Dies aktiviert die Schnellsuchfunktion der IDE, indem das Schnellsucheingabefeld aktiviert wird. Ist dieses Feld bereits aktiv und enthält Text, so wird das nächste Vorkommen dieses Textes gesucht.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3122"/>
+        <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Schnellsuche&lt;/b&gt;&lt;p&gt;Dies aktiviert die Schnellsuchfunktion der IDE, indem das Schnellsucheingabefeld aktiviert wird. Ist dieses Feld bereits aktiv und enthält Text, so wird das nächste Vorkommen dieses Textes gesucht.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3146"/>
         <source>&lt;b&gt;Quicksearch backwards&lt;/b&gt;&lt;p&gt;This searches the previous occurrence of the quicksearch text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Schnellsuche rückwärts&lt;/b&gt;&lt;p&gt;Dies sucht das letzte Vorkommen des Schnellsuchtextes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3406"/>
+        <location filename="../ViewManager/ViewManager.py" line="3430"/>
         <source>&lt;p&gt;Enter the searchtext directly into this field. The search will be performed case insensitive. The quicksearch function is activated upon activation of the quicksearch next action (default key Ctrl+Shift+K), if this entry field does not have the input focus. Otherwise it searches for the next occurrence of the text entered. The quicksearch backwards action (default key Ctrl+Shift+J) searches backward. Activating the &apos;quicksearch extend&apos; action (default key Ctrl+Shift+H) extends the current searchtext to the end of the currently found word. The quicksearch can be ended by pressing the Return key while the quicksearch entry has the the input focus.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Gib den Suchtext direkt in dieses Feld ein. Die Suche wird unabhängig von der Schreibweise durchgeführt. Die Schnellsuchefunktion wird durch Auslösen der Schnellsucheaktion (Standard Strg+Umschalt+K) aktiviert, falls dieses Eingabefeld nicht den Fokus besitzt. Sonst wird das nächste Vorkommen des eingegebenen Textes gesucht. Die „Schnellsuche rückwärts“-Aktion (Standard Strg+Umschalt+J) sucht rückwärts. Aktivierung der „Schnellsuche erweitern“-Aktion (Standard Strg+Umschalt+H) erweitert den aktuellen Suchtext bis zum Ende des aktuell gefundenen Wortes. Während das Schnellsucheeingabefeld den Fokus besitzt, kann die Schnellsuche durch Betätigung der Return-Taste beendet werden.&lt;/p&gt;</translation>
     </message>
@@ -79710,119 +79705,119 @@
         <translation>&lt;b&gt;Druckvorschau&lt;/b&gt;&lt;p&gt;Zeift eine Druckvorschau des aktuellen Editorfensters.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Insert new line below current line</source>
         <translation>Neue Zeile unterhalb der aktuellen einfügen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Shift+Return</source>
         <translation>Shift+Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Shift+Enter</source>
         <translation>Shift+Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Replace in Files</source>
         <translation>Ersetzen in Dateien</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Replace in F&amp;iles...</source>
         <translation>Ersetzen in Da&amp;teien...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation>Shift+Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3286"/>
+        <location filename="../ViewManager/ViewManager.py" line="3310"/>
         <source>Search for a text in files and replace it</source>
         <translation>Nach Text in Dateien suchen und ihn ersetzen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3288"/>
+        <location filename="../ViewManager/ViewManager.py" line="3312"/>
         <source>&lt;b&gt;Replace in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ersetzen in Dateien&lt;/b&gt;&lt;p&gt;Sucht nach Text in den Dateien eines Verzeichnisbaumes oder des Projektes und ersetzt ihn. Es wird ein Dialog angezeigt, in dem der Suchtext, der Ersetzungstext und die Suchoptionen eingegeben werden können und in dem das Suchresultat angezeigt wird.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4373"/>
+        <location filename="../ViewManager/ViewManager.py" line="4397"/>
         <source>Perform spell check of current editor</source>
         <translation>Führe eine Rechtschreibprüfung des aktuellen Editors durch</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4383"/>
+        <location filename="../ViewManager/ViewManager.py" line="4407"/>
         <source>Automatic spell checking</source>
         <translation>Automatische Rechtschreibprüfung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4383"/>
+        <location filename="../ViewManager/ViewManager.py" line="4407"/>
         <source>&amp;Automatic spell checking</source>
         <translation>&amp;Automatische Rechtschreibprüfung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4391"/>
+        <location filename="../ViewManager/ViewManager.py" line="4415"/>
         <source>(De-)Activate automatic spell checking</source>
         <translation>(De-)Aktiviert die automatische Rechtschreibprüfung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4393"/>
+        <location filename="../ViewManager/ViewManager.py" line="4417"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Automatische Rechtschreibprüfung&lt;/b&gt;&lt;p&gt;Aktiviert bzw. deaktiviert die automatische Rechtschreibprüfung aller Editoren.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4460"/>
+        <location filename="../ViewManager/ViewManager.py" line="4484"/>
         <source>Spelling</source>
         <translation>Rechtschreibung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4926"/>
+        <location filename="../ViewManager/ViewManager.py" line="4950"/>
         <source>Line: {0:5}</source>
         <translation>Zeile: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4932"/>
+        <location filename="../ViewManager/ViewManager.py" line="4956"/>
         <source>Pos: {0:5}</source>
         <translation>Pos: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4122"/>
+        <location filename="../ViewManager/ViewManager.py" line="4146"/>
         <source>Next warning message</source>
         <translation>Nächste Warnung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4116"/>
+        <location filename="../ViewManager/ViewManager.py" line="4140"/>
         <source>&amp;Next warning message</source>
         <translation>&amp;Nächste Warnung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4141"/>
+        <location filename="../ViewManager/ViewManager.py" line="4165"/>
         <source>Previous warning message</source>
         <translation>Vorherige Warnung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4133"/>
+        <location filename="../ViewManager/ViewManager.py" line="4157"/>
         <source>&amp;Previous warning message</source>
         <translation>&amp;Vorherige Warnung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4159"/>
+        <location filename="../ViewManager/ViewManager.py" line="4183"/>
         <source>Clear Warning Messages</source>
         <translation>Warnungen löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4152"/>
+        <location filename="../ViewManager/ViewManager.py" line="4176"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>&amp;Warnungen löschen</translation>
     </message>
@@ -79843,425 +79838,425 @@
         <translation>&lt;b&gt;Zeilen verbinden&lt;/b&gt;&lt;p&gt;Verbindet die aktuelle mit der nächsten Zeile.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3200"/>
+        <location filename="../ViewManager/ViewManager.py" line="3224"/>
         <source>Goto Last Edit Location</source>
         <translation>Gehe zur letzten Editierposition</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3213"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation>Gehe zur letzten &amp;Editierposition</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3213"/>
         <source>Ctrl+Shift+G</source>
         <comment>Search|Goto Last Edit Location</comment>
         <translation>Ctrl+Shift+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3203"/>
+        <location filename="../ViewManager/ViewManager.py" line="3227"/>
         <source>&lt;b&gt;Goto Last Edit Location&lt;/b&gt;&lt;p&gt;Go to the location of the last edit in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gehe zur letzten Editierposition&lt;/b&gt;&lt;p&gt;Gehe zu der Textposition, an der die letzte Editieraktion stattgefunden hat.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3212"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Goto Previous Method or Class</source>
         <translation>Gehe zur vorherigen Methode oder Klasse</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3212"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Ctrl+Shift+Up</source>
         <comment>Search|Goto Previous Method or Class</comment>
         <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3222"/>
-        <source>Go to the previous method or class definition</source>
-        <translation>Gehe zur vorherigen Methoden- oder Klassendefinition</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3226"/>
-        <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Gehe zur vorherigen Methode oder Klasse&lt;/b&gt;&lt;p&gt;Dies springt zur Zeile der vorherigen Methoden- oder Klassendefinition und selektiert den Namen.&lt;/p&lt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3236"/>
-        <source>Goto Next Method or Class</source>
-        <translation>Gehe zur nächsten Methode oder Klasse</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3236"/>
-        <source>Ctrl+Shift+Down</source>
-        <comment>Search|Goto Next Method or Class</comment>
-        <translation>Ctrl+Shift+Down</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3246"/>
+        <source>Go to the previous method or class definition</source>
+        <translation>Gehe zur vorherigen Methoden- oder Klassendefinition</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3250"/>
+        <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Gehe zur vorherigen Methode oder Klasse&lt;/b&gt;&lt;p&gt;Dies springt zur Zeile der vorherigen Methoden- oder Klassendefinition und selektiert den Namen.&lt;/p&lt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3260"/>
+        <source>Goto Next Method or Class</source>
+        <translation>Gehe zur nächsten Methode oder Klasse</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3260"/>
+        <source>Ctrl+Shift+Down</source>
+        <comment>Search|Goto Next Method or Class</comment>
+        <translation>Ctrl+Shift+Down</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3270"/>
         <source>Go to the next method or class definition</source>
         <translation>Gehe zur nächsten Methoden- oder Klassendefinition</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3248"/>
+        <location filename="../ViewManager/ViewManager.py" line="3272"/>
         <source>&lt;b&gt;Goto Next Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the next method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gehe zur nächsten Methode oder Klasse&lt;/b&gt;&lt;p&gt;Dies springt zur Zeile der nächsten Methoden- oder Klassendefinition und selektiert den Namen.&lt;/p&lt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3757"/>
+        <location filename="../ViewManager/ViewManager.py" line="3781"/>
         <source>Preview</source>
         <translation>Vorschau</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3762"/>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <source>Preview the current file in the web browser</source>
         <translation>Zeige eine Vorschau der aktuellen Datei im Web Browser</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3764"/>
+        <location filename="../ViewManager/ViewManager.py" line="3788"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vorschau&lt;/b&gt;&lt;p&gt;Dies öffnet einen Web Browser mit einer Vorschau der aktuellen Datei.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1489"/>
+        <location filename="../ViewManager/ViewManager.py" line="1511"/>
         <source>Meta+B</source>
         <translation>Meta+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1502"/>
+        <location filename="../ViewManager/ViewManager.py" line="1524"/>
         <source>Meta+F</source>
         <translation>Meta+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1514"/>
+        <location filename="../ViewManager/ViewManager.py" line="1536"/>
         <source>Meta+P</source>
         <translation>Meta+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1526"/>
+        <location filename="../ViewManager/ViewManager.py" line="1548"/>
         <source>Meta+N</source>
         <translation>Meta+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1587"/>
+        <location filename="../ViewManager/ViewManager.py" line="1609"/>
         <source>Move to first visible character in document line</source>
         <translation>Zum ersten sichtbaren Zeichen der Dokumentzeile springen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1603"/>
+        <location filename="../ViewManager/ViewManager.py" line="1625"/>
         <source>Move to start of display line</source>
         <translation>Zum Beginn der Anzeigezeile springen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1620"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Move to end of document line</source>
         <translation>Zum Ende der Dokumentenzeile springen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1628"/>
+        <location filename="../ViewManager/ViewManager.py" line="1650"/>
         <source>Meta+E</source>
         <translation>Meta+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1696"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Meta+V</source>
         <translation>Meta+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1702"/>
+        <location filename="../ViewManager/ViewManager.py" line="1724"/>
         <source>Move to start of document</source>
         <translation>Zum Dokumentenanfang springen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1719"/>
+        <location filename="../ViewManager/ViewManager.py" line="1741"/>
         <source>Move to end of document</source>
         <translation>Zum Dokumentenende springen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1764"/>
+        <location filename="../ViewManager/ViewManager.py" line="1786"/>
         <source>Meta+Shift+B</source>
         <translation>Meta+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1779"/>
+        <location filename="../ViewManager/ViewManager.py" line="1801"/>
         <source>Meta+Shift+F</source>
         <translation>Meta+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1794"/>
+        <location filename="../ViewManager/ViewManager.py" line="1816"/>
         <source>Meta+Shift+P</source>
         <translation>Meta+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1809"/>
+        <location filename="../ViewManager/ViewManager.py" line="1831"/>
         <source>Meta+Shift+N</source>
         <translation>Meta+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1877"/>
+        <location filename="../ViewManager/ViewManager.py" line="1899"/>
         <source>Extend selection to first visible character in document line</source>
         <translation>Auswahl zum ersten sichtbaren Zeichen der Dokumentzeile erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1895"/>
+        <location filename="../ViewManager/ViewManager.py" line="1917"/>
         <source>Extend selection to end of document line</source>
         <translation>Auswahl zum Ende der Dokumentenzeile erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1903"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Meta+Shift+E</source>
         <translation>Meta+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1960"/>
+        <location filename="../ViewManager/ViewManager.py" line="1982"/>
         <source>Meta+Shift+V</source>
         <translation>Meta+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1966"/>
+        <location filename="../ViewManager/ViewManager.py" line="1988"/>
         <source>Extend selection to start of document</source>
         <translation>Auswahl zum Dokumentenanfang erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1974"/>
+        <location filename="../ViewManager/ViewManager.py" line="1996"/>
         <source>Ctrl+Shift+Up</source>
         <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1983"/>
+        <location filename="../ViewManager/ViewManager.py" line="2005"/>
         <source>Extend selection to end of document</source>
         <translation>Auswahl zum Dokumentenende erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1991"/>
+        <location filename="../ViewManager/ViewManager.py" line="2013"/>
         <source>Ctrl+Shift+Down</source>
         <translation>Ctrl+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2009"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Meta+H</source>
         <translation>Meta+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2018"/>
+        <location filename="../ViewManager/ViewManager.py" line="2040"/>
         <source>Delete previous character if not at start of line</source>
         <translation>Zeichen links löschen, wenn nicht am Zeilenanfang</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2039"/>
+        <location filename="../ViewManager/ViewManager.py" line="2061"/>
         <source>Meta+D</source>
         <translation>Meta+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2083"/>
+        <location filename="../ViewManager/ViewManager.py" line="2105"/>
         <source>Meta+K</source>
         <translation>Meta+K</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2192"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <source>Move to end of display line</source>
         <translation>Zum Ende der Anzeigezeile springen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2209"/>
+        <location filename="../ViewManager/ViewManager.py" line="2231"/>
         <source>Extend selection to end of display line</source>
         <translation>Auswahl zum Ende der Anzeigezeile erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2251"/>
+        <location filename="../ViewManager/ViewManager.py" line="2273"/>
         <source>Meta+Alt+Shift+N</source>
         <translation>Meta+Alt+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2266"/>
+        <location filename="../ViewManager/ViewManager.py" line="2288"/>
         <source>Meta+Alt+Shift+P</source>
         <translation>Meta+Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2284"/>
+        <location filename="../ViewManager/ViewManager.py" line="2306"/>
         <source>Meta+Alt+Shift+B</source>
         <translation>Meta+Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2302"/>
+        <location filename="../ViewManager/ViewManager.py" line="2324"/>
         <source>Meta+Alt+Shift+F</source>
         <translation>Meta+Alt+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2308"/>
+        <location filename="../ViewManager/ViewManager.py" line="2330"/>
         <source>Extend rectangular selection to first visible character in document line</source>
         <translation>Rechteckige Auswahl zum ersten sichtbaren Zeichen der Dokumentzeile erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2327"/>
+        <location filename="../ViewManager/ViewManager.py" line="2349"/>
         <source>Extend rectangular selection to end of document line</source>
         <translation>Rechteckige Auswahl zum Ende der Dokumentenzeile erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2337"/>
+        <location filename="../ViewManager/ViewManager.py" line="2359"/>
         <source>Meta+Alt+Shift+E</source>
         <translation>Meta+Alt+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2340"/>
+        <location filename="../ViewManager/ViewManager.py" line="2362"/>
         <source>Alt+Shift+End</source>
         <translation>Alt+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2361"/>
+        <location filename="../ViewManager/ViewManager.py" line="2383"/>
         <source>Alt+Shift+PgDown</source>
         <translation>Alt+Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2373"/>
+        <location filename="../ViewManager/ViewManager.py" line="2395"/>
         <source>Meta+Alt+Shift+V</source>
         <translation>Meta+Alt+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2393"/>
+        <location filename="../ViewManager/ViewManager.py" line="2415"/>
         <source>Scroll to start of document</source>
         <translation>Zum Dokumentenanfang rollen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2408"/>
+        <location filename="../ViewManager/ViewManager.py" line="2430"/>
         <source>Scroll to end of document</source>
         <translation>Zum Dokumentenende rollen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2423"/>
+        <location filename="../ViewManager/ViewManager.py" line="2445"/>
         <source>Scroll vertically to center current line</source>
         <translation>Vertical rollen, um aktuelle Zeile zu zentrieren</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2431"/>
-        <source>Meta+L</source>
-        <translation>Meta+L</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2438"/>
-        <source>Move to end of next word</source>
-        <translation>Zum Ende des nächsten Wortes springen</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2453"/>
+        <source>Meta+L</source>
+        <translation>Meta+L</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2460"/>
+        <source>Move to end of next word</source>
+        <translation>Zum Ende des nächsten Wortes springen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2475"/>
         <source>Extend selection to end of next word</source>
         <translation>Auswahl bis zum Ende des nächsten Wortes erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2469"/>
+        <location filename="../ViewManager/ViewManager.py" line="2491"/>
         <source>Move to end of previous word</source>
         <translation>Zum Ende des vorigen Wortes springen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2481"/>
+        <location filename="../ViewManager/ViewManager.py" line="2503"/>
         <source>Extend selection to end of previous word</source>
         <translation>Auswahl bis zum Ende des vorigen Wortes erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2493"/>
+        <location filename="../ViewManager/ViewManager.py" line="2515"/>
         <source>Move to start of document line</source>
         <translation>Zum Beginn der Dokumentenzeile springen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2501"/>
+        <location filename="../ViewManager/ViewManager.py" line="2523"/>
         <source>Meta+A</source>
         <translation>Meta+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2508"/>
+        <location filename="../ViewManager/ViewManager.py" line="2530"/>
         <source>Extend selection to start of document line</source>
         <translation>Auswahl zum Beginn der Dokumentenzeile erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2519"/>
+        <location filename="../ViewManager/ViewManager.py" line="2541"/>
         <source>Meta+Shift+A</source>
         <translation>Meta+Shift+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2526"/>
+        <location filename="../ViewManager/ViewManager.py" line="2548"/>
         <source>Extend rectangular selection to start of document line</source>
         <translation>Rechteckige Auswahl zum Beginn der Dokumentenzeile erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2536"/>
+        <location filename="../ViewManager/ViewManager.py" line="2558"/>
         <source>Meta+Alt+Shift+A</source>
         <translation>Meta+Alt+Shift+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2544"/>
+        <location filename="../ViewManager/ViewManager.py" line="2566"/>
         <source>Extend selection to start of display line</source>
         <translation>Auswahl zum Beginn der Anzeigezeile erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2563"/>
+        <location filename="../ViewManager/ViewManager.py" line="2585"/>
         <source>Move to start of display or document line</source>
         <translation>Zum Beginn der Dokumenten- oder Anzeigezeile springen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2577"/>
+        <location filename="../ViewManager/ViewManager.py" line="2599"/>
         <source>Extend selection to start of display or document line</source>
         <translation>Auswahl zum Beginn der Dokumenten- oder Anzeigezeile erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2592"/>
+        <location filename="../ViewManager/ViewManager.py" line="2614"/>
         <source>Move to first visible character in display or document line</source>
         <translation>Zum ersten sichtbaren Zeichen der Dokument- oder Anzeigezeile springen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2609"/>
+        <location filename="../ViewManager/ViewManager.py" line="2631"/>
         <source>Extend selection to first visible character in display or document line</source>
         <translation>Auswahl zum ersten sichtbaren Zeichen der Dokument- oder Anzeigezeile erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2626"/>
+        <location filename="../ViewManager/ViewManager.py" line="2648"/>
         <source>Move to end of display or document line</source>
         <translation>Zum Ende der Dokumenten- oder Anzeigezeile springen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2640"/>
+        <location filename="../ViewManager/ViewManager.py" line="2662"/>
         <source>Extend selection to end of display or document line</source>
         <translation>Auswahl zum Ende der Dokumenten- oder Anzeigezeile erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2655"/>
+        <location filename="../ViewManager/ViewManager.py" line="2677"/>
         <source>Stuttered move up one page</source>
         <translation>„Stotternd“ um eine Seite nach oben</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2667"/>
+        <location filename="../ViewManager/ViewManager.py" line="2689"/>
         <source>Stuttered extend selection up one page</source>
         <translation>Auswahl „stotternd“ um eine Seite nach oben erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2680"/>
+        <location filename="../ViewManager/ViewManager.py" line="2702"/>
         <source>Stuttered move down one page</source>
         <translation>„Stotternd“ um eine Seite nach unten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2692"/>
+        <location filename="../ViewManager/ViewManager.py" line="2714"/>
         <source>Stuttered extend selection down one page</source>
         <translation>Auswahl „stotternd“ um eine Seite nach unten erweitern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2705"/>
+        <location filename="../ViewManager/ViewManager.py" line="2727"/>
         <source>Delete right to end of next word</source>
         <translation>Rechts bis zum Ende des nächsten Wortes löschen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2713"/>
+        <location filename="../ViewManager/ViewManager.py" line="2735"/>
         <source>Alt+Del</source>
         <translation>Alt+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2720"/>
+        <location filename="../ViewManager/ViewManager.py" line="2742"/>
         <source>Move selected lines up one line</source>
         <translation>Ausgewählte Zeilen um eine Zeile nach oben</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2732"/>
+        <location filename="../ViewManager/ViewManager.py" line="2754"/>
         <source>Move selected lines down one line</source>
         <translation>Ausgewählte Zeilen um eine Zeile nach unten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2346"/>
+        <location filename="../ViewManager/ViewManager.py" line="2368"/>
         <source>Alt+Shift+PgUp</source>
         <translation>Alt+Shift+PgUp</translation>
     </message>
@@ -80287,39 +80282,39 @@
         <translation>&lt;b&gt;Kommentar umschalten&lt;/b&gt;&lt;p&gt;Falls die aktuelle Zeile nicht mit einem Blockkommentar beginnt, so wird die aktuelle Zeile oder Auswahl kommentiert. Ist sie kommentiert, so wird dieser Blockkommentar entkommentiert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Zoom reset</source>
         <translation>Vergrößerung zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Zoom &amp;reset</source>
         <translation>Vergrößerung &amp;zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3533"/>
+        <location filename="../ViewManager/ViewManager.py" line="3557"/>
         <source>Reset the zoom of the text</source>
         <translation>Die Textgröße zurücksetzen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3535"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vergrößerung zurücksetzen&lt;/b&gt;&lt;p&gt;Setzt die Vergrößerung auf den Wert 100% zurück.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation>Vergrößern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation>Verkleinern</translation>
@@ -80330,191 +80325,191 @@
         <translation>&amp;Alle speichern</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <location filename="../ViewManager/ViewManager.py" line="4270"/>
         <source>Next Change</source>
         <translation>Nächste Änderung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4240"/>
-        <source>&amp;Next Change</source>
-        <translation>&amp;Nächste Änderung</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4248"/>
-        <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Nächste Änderung&lt;/b&gt;&lt;p&gt;Gehe zur nächsten Zeile des aktuellen Editors, die eine Änderung enthält.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <source>&amp;Next Change</source>
+        <translation>&amp;Nächste Änderung</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4272"/>
+        <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Nächste Änderung&lt;/b&gt;&lt;p&gt;Gehe zur nächsten Zeile des aktuellen Editors, die eine Änderung enthält.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4288"/>
         <source>Previous Change</source>
         <translation>Vorherige Änderung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4257"/>
+        <location filename="../ViewManager/ViewManager.py" line="4281"/>
         <source>&amp;Previous Change</source>
         <translation>&amp;Vorherige Änderung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4266"/>
+        <location filename="../ViewManager/ViewManager.py" line="4290"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vorherige Änderung&lt;/b&gt;&lt;p&gt;Gehe zur vorherigen Zeile des aktuellen Editors, die eine Änderung enthält.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Check spelling</source>
         <translation>Rechtschreibprüfung</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Check &amp;spelling...</source>
         <translation>&amp;Rechtschreibprüfung...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4399"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rechtschreibprüfung&lt;b&gt;&lt;p&gt;Führe eine Rechtschreibprüfung des aktuellen Editors durch.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4424"/>
+        <location filename="../ViewManager/ViewManager.py" line="4448"/>
         <source>Edit Dictionary</source>
         <translation>Wörterbuch bearbeiten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4426"/>
+        <location filename="../ViewManager/ViewManager.py" line="4450"/>
         <source>Project Word List</source>
         <translation>Projekt-Wörterliste</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4429"/>
+        <location filename="../ViewManager/ViewManager.py" line="4453"/>
         <source>Project Exception List</source>
         <translation>Projekt-Ausnahmenliste</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4434"/>
+        <location filename="../ViewManager/ViewManager.py" line="4458"/>
         <source>User Word List</source>
         <translation>Nutzer-Wörterliste</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4437"/>
+        <location filename="../ViewManager/ViewManager.py" line="4461"/>
         <source>User Exception List</source>
         <translation>Nutzer-Ausnahmenliste</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6630"/>
+        <location filename="../ViewManager/ViewManager.py" line="6654"/>
         <source>Edit Spelling Dictionary</source>
         <translation>Wörterbuch bearbeiten</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6607"/>
+        <location filename="../ViewManager/ViewManager.py" line="6631"/>
         <source>Editing {0}</source>
         <translation>Bearbeite {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6589"/>
+        <location filename="../ViewManager/ViewManager.py" line="6613"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Wörterbuchdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht gelesen werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6618"/>
+        <location filename="../ViewManager/ViewManager.py" line="6642"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Die Wörterbuchdatei &lt;b&gt;{0}&lt;/b&gt; konnte nicht geschrieben werden.&lt;/p&gt;&lt;p&gt;Ursache: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6630"/>
+        <location filename="../ViewManager/ViewManager.py" line="6654"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation>Das Wörterbuch wurde erfolgreich gespeichert.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2955"/>
+        <location filename="../ViewManager/ViewManager.py" line="2979"/>
         <source>Search current word forward</source>
         <translation>Aktuelles Wort vorwärts suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2955"/>
+        <location filename="../ViewManager/ViewManager.py" line="2979"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation>Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2966"/>
+        <location filename="../ViewManager/ViewManager.py" line="2990"/>
         <source>Search next occurrence of the current word</source>
         <translation>Das nächste Vorkommen des aktuellen Wortes suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2969"/>
+        <location filename="../ViewManager/ViewManager.py" line="2993"/>
         <source>&lt;b&gt;Search current word forward&lt;/b&gt;&lt;p&gt;Search the next occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aktuelles Wort vorwärts suchen&lt;/b&gt;&lt;p&gt;Sucht das nächste Vorkommen des aktuellen Wortes des aktuellen Editors.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2978"/>
+        <location filename="../ViewManager/ViewManager.py" line="3002"/>
         <source>Search current word backward</source>
         <translation>Aktuelles Wort rückwärts suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2978"/>
+        <location filename="../ViewManager/ViewManager.py" line="3002"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation>Ctrl+,</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2989"/>
+        <location filename="../ViewManager/ViewManager.py" line="3013"/>
         <source>Search previous occurrence of the current word</source>
         <translation>Das vorherige Vorkommen des aktuellen Wortes suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2992"/>
+        <location filename="../ViewManager/ViewManager.py" line="3016"/>
         <source>&lt;b&gt;Search current word backward&lt;/b&gt;&lt;p&gt;Search the previous occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aktuelles Wort rückwärts suchen&lt;/b&gt;&lt;p&gt;Sucht das vorherige Vorkommen des aktuellen Wortes des aktuellen Editors.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Search in Open Files</source>
         <translation>Suchen in geöffneten Dateien</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Search in Open Files...</source>
         <translation>Suchen in geöffneten Dateien...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Meta+Ctrl+Alt+F</source>
         <comment>Search|Search Open Files</comment>
         <translation>Meta+Ctrl+Alt+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3310"/>
+        <location filename="../ViewManager/ViewManager.py" line="3334"/>
         <source>Search for a text in open files</source>
         <translation>Nach Text in geöffneten Dateien suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3312"/>
+        <location filename="../ViewManager/ViewManager.py" line="3336"/>
         <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Suchen in geöffneten Dateien&lt;/b&gt;&lt;p&gt;Sucht nach Text in den aktuell geöffneten Dateien. Es wird ein Dialog angezeigt, in dem der Suchtext und die Suchoptionen eingegeben werden können und in dem das Suchresultat angezeigt wird.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
         <source>Replace in Open Files</source>
         <translation>Ersetzen in geöffneten Dateien</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
         <source>Meta+Ctrl+Alt+R</source>
         <comment>Search|Replace in Open Files</comment>
         <translation>Meta+Ctrl+Alt+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3332"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Search for a text in open files and replace it</source>
         <translation>Nach Text in geöffneten Dateien suchen und ihn ersetzen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3334"/>
+        <location filename="../ViewManager/ViewManager.py" line="3358"/>
         <source>&lt;b&gt;Replace in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ersetzen in geöffneten Dateien&lt;/b&gt;&lt;p&gt;Sucht nach Text in den aktuell geöffneten Dateien und ersetzt ihn. Es wird ein Dialog angezeigt, in dem der Suchtext, der Ersetzungstext und die Suchoptionen eingegeben werden können und in dem das Suchresultat angezeigt wird.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
         <source>Replace in Open Files...</source>
         <translation>Ersetzen in geöffneten Dateien...</translation>
     </message>
@@ -80540,67 +80535,67 @@
         <translation>&lt;b&gt;Sortieren&lt;/b&gt;&lt;p&gt;Dies sortiert die von der Rechteckauswahl überspannten Zeilen basierend auf der Auswahl. Führende und folgende Leerzeichen werden ignoriert.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4953"/>
+        <location filename="../ViewManager/ViewManager.py" line="4977"/>
         <source>Language: {0}</source>
         <translation>Sprache: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4960"/>
+        <location filename="../ViewManager/ViewManager.py" line="4984"/>
         <source>EOL Mode: {0}</source>
         <translation>EOL-Modus: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3641"/>
+        <location filename="../ViewManager/ViewManager.py" line="3665"/>
         <source>New Document View</source>
         <translation>Neue Dokumentenansicht</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3641"/>
-        <source>New &amp;Document View</source>
-        <translation>Neue &amp;Dokumentenansicht</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3646"/>
-        <source>Open a new view of the current document</source>
-        <translation>Offnet eine neue Ansicht des aktuellen Dokumentes</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3648"/>
-        <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Neue Dokumentenansicht&lt;/b&gt;&lt;p&gt;Offnet eine neue Ansicht des aktuellen Dokumentes. Beide Ansichten zeigen das selbe Dokument. Die Cursor lassen sich jedoch unabhängig positionieren.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3658"/>
-        <source>New Document View (with new split)</source>
-        <translation>Neue Dokumentenansicht (in neuem Abschnitt)</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3665"/>
+        <source>New &amp;Document View</source>
+        <translation>Neue &amp;Dokumentenansicht</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3670"/>
+        <source>Open a new view of the current document</source>
+        <translation>Offnet eine neue Ansicht des aktuellen Dokumentes</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3672"/>
+        <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Neue Dokumentenansicht&lt;/b&gt;&lt;p&gt;Offnet eine neue Ansicht des aktuellen Dokumentes. Beide Ansichten zeigen das selbe Dokument. Die Cursor lassen sich jedoch unabhängig positionieren.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3682"/>
+        <source>New Document View (with new split)</source>
+        <translation>Neue Dokumentenansicht (in neuem Abschnitt)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3689"/>
         <source>Open a new view of the current document in a new split</source>
         <translation>Offnet eine neue Ansicht des aktuellen Dokumentes in einem neuen Abschnitt</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3668"/>
+        <location filename="../ViewManager/ViewManager.py" line="3692"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Neue Dokumentenansicht&lt;/b&gt;&lt;p&gt;Offnet eine neue Ansicht des aktuellen Dokumentes in einem neuen Abschnitt. Beide Ansichten zeigen das selbe Dokument. Die Cursor lassen sich jedoch unabhängig positionieren.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4124"/>
+        <location filename="../ViewManager/ViewManager.py" line="4148"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nächste Warnung&lt;/b&gt;&lt;p&gt;Gehe zur nächsten Zeile des aktuellen Editors, die eine pyflakes Warnung besitzt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4143"/>
+        <location filename="../ViewManager/ViewManager.py" line="4167"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vorherige Warnung&lt;/b&gt;&lt;p&gt;Gehe zur vorherigen Zeile des aktuellen Editors, die eine pyflakes Warnung besitzt.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4161"/>
+        <location filename="../ViewManager/ViewManager.py" line="4185"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Warnungen löschen&lt;/b&gt;&lt;p&gt;Löscht die pyflakes Warnungen aller Editoren.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2776"/>
+        <location filename="../ViewManager/ViewManager.py" line="2798"/>
         <source>Complete</source>
         <translation>Vervollständigen</translation>
     </message>
@@ -80721,65 +80716,65 @@
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3020"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Replace and Search</source>
         <translation>Ersetzen und Suchen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3020"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Meta+R</source>
         <comment>Search|Replace and Search</comment>
         <translation>Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3030"/>
+        <location filename="../ViewManager/ViewManager.py" line="3054"/>
         <source>Replace the found text and search the next occurrence</source>
         <translation>Erstezt den gefundenen Text und sucht das nächste Vorkommen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3033"/>
+        <location filename="../ViewManager/ViewManager.py" line="3057"/>
         <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ersetzen und Suchen&lt;/b&gt;&lt;p&gt;Ersetzt den Text an der Fundstelle im aktuellen Editor und sucht das nächste Vorkommen. Der zuvor eingegebene Suchtext und die Suchoptionen werden wiederverwendet.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3044"/>
+        <location filename="../ViewManager/ViewManager.py" line="3068"/>
         <source>Replace Occurrence</source>
         <translation>Fundstelle ersetzen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3044"/>
+        <location filename="../ViewManager/ViewManager.py" line="3068"/>
         <source>Ctrl+Meta+R</source>
         <comment>Search|Replace Occurrence</comment>
         <translation>Ctrl+Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3054"/>
+        <location filename="../ViewManager/ViewManager.py" line="3078"/>
         <source>Replace the found text</source>
         <translation>Ersetzt den gefundenen Text</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3056"/>
+        <location filename="../ViewManager/ViewManager.py" line="3080"/>
         <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Fundstelle ersetzen&lt;/b&gt;&lt;p&gt;Ersetzt den Text an der Fundstelle im aktuellen Editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3066"/>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
         <source>Replace All</source>
         <translation>Alle ersetzen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3066"/>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
         <source>Shift+Meta+R</source>
         <comment>Search|Replace All</comment>
         <translation>Shift+Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3076"/>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <source>Replace search text occurrences</source>
         <translation>Ersetzt alle Fundstellen des Suchtextes</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3078"/>
+        <location filename="../ViewManager/ViewManager.py" line="3102"/>
         <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alle ersetzen&lt;/b&gt;&lt;p&gt;Ersetzt alle Fundstellen des Suchtextes im aktuellen Editor.&lt;/p&gt;</translation>
     </message>
@@ -80805,57 +80800,57 @@
         <translation>&lt;b&gt;Code Info&lt;/b&gt;&lt;p&gt;Zeigt Code Informationen basierend auf der aktuellen Cursorposition an.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <location filename="../ViewManager/ViewManager.py" line="3638"/>
         <source>Clear all folds</source>
         <translation>Alle Faltungen aufklappen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3610"/>
+        <location filename="../ViewManager/ViewManager.py" line="3634"/>
         <source>Clear &amp;all folds</source>
         <translation>Alle &amp;Faltungen aufklappen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3616"/>
+        <location filename="../ViewManager/ViewManager.py" line="3640"/>
         <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alle Faltungen aufklappen&lt;/b&gt;&lt;p&gt;Alle Faltungen des aktuellen Editors aufklappen, d.h. sicherstellen, dass alle Zeilen angezeigt werden.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Reverse selected lines</source>
         <translation>Ausgewählte Zeilen umkehren</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Meta+Alt+R</source>
         <translation>Meta+Ctrl+Alt+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3774"/>
-        <source>Python AST Viewer</source>
-        <translation>Python AST Anzeige</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3779"/>
-        <source>Show the AST for the current Python file</source>
-        <translation>Zeigt den AST für die aktuelle Python Datei</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3781"/>
-        <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Python AST Anzeige&lt;b&gt;&lt;p&gt;Dies öffnet eine Baumansicht mit dem AST der aktuellen Python Quelltextdatei.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3791"/>
-        <source>Python Disassembly Viewer</source>
-        <translation>Python Disassembly Anzeige</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Python AST Viewer</source>
+        <translation>Python AST Anzeige</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3803"/>
+        <source>Show the AST for the current Python file</source>
+        <translation>Zeigt den AST für die aktuelle Python Datei</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3805"/>
+        <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Python AST Anzeige&lt;b&gt;&lt;p&gt;Dies öffnet eine Baumansicht mit dem AST der aktuellen Python Quelltextdatei.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3815"/>
+        <source>Python Disassembly Viewer</source>
+        <translation>Python Disassembly Anzeige</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
         <source>Show the Disassembly for the current Python file</source>
         <translation>Zeigt ein Disassembly für die aktuelle Python Datei</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3800"/>
+        <location filename="../ViewManager/ViewManager.py" line="3824"/>
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Python Disassembly Anzeige&lt;/b&gt;&lt;p&gt;Dies öffnet eine Baumansicht mit einer Disassembly der aktuellen Python Quelltextdatei.&lt;/p&gt;</translation>
     </message>
@@ -80874,6 +80869,27 @@
         <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rückwärtssuchen&lt;/b&gt;&lt;p&gt;Nach der vorherigen Textstelle im Shell Fenster suchen. Der zuvor eingegebene Suchtext und die Suchoptionen werden weiterverwendet.&lt;/p&gt;</translation>
     </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1468"/>
+        <source>Generate Docstring</source>
+        <translation>Docstring erzeugen</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1468"/>
+        <source>Ctrl+Alt+D</source>
+        <comment>Edit|Generate Docstring</comment>
+        <translation>Ctrl+Alt+D</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1475"/>
+        <source>Generate a docstring for the current function/method</source>
+        <translation>Erzeuge eine Docstring für die aktuelle Funktion/Methode</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1478"/>
+        <source>&lt;b&gt;Generate Docstring&lt;/b&gt;&lt;p&gt;Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Docstring erzeugen&lt;/b&gt;&lt;p&gt;Erzeuge eine Docstring für die aktuelle Funktion/Methode falls die Einfügemarke auf der Startzeile der Funktionsdefinition oder der Zeile nach deren Ende steht. Der Docstring wird an der korrekten Stelle eingefügt und die Einfügemarke wird an das Ende der Beschreibungszeile gesetzt.&lt;/p&gt;</translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
--- a/eric6/i18n/eric6_empty.ts	Fri Jan 22 16:55:43 2021 +0100
+++ b/eric6/i18n/eric6_empty.ts	Sat Jan 23 12:02:52 2021 +0100
@@ -10942,17 +10942,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="828"/>
+        <location filename="../QScintilla/Editor.py" line="832"/>
         <source>Select to brace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="830"/>
+        <location filename="../QScintilla/Editor.py" line="834"/>
         <source>Select all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="831"/>
+        <location filename="../QScintilla/Editor.py" line="835"/>
         <source>Deselect all</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10962,12 +10962,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="839"/>
+        <location filename="../QScintilla/Editor.py" line="843"/>
         <source>Check spelling of selection...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="843"/>
+        <location filename="../QScintilla/Editor.py" line="847"/>
         <source>Remove from dictionary</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11792,12 +11792,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="849"/>
-        <source>Insert Docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8715"/>
+        <location filename="../QScintilla/Editor.py" line="8726"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
@@ -76982,1042 +76977,1042 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Move left one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
-        <source>Left</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1489"/>
-        <source>Meta+B</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1494"/>
-        <source>Move right one character</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1494"/>
-        <source>Right</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="1502"/>
+        <source>Left</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1511"/>
+        <source>Meta+B</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1516"/>
+        <source>Move right one character</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1516"/>
+        <source>Right</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1524"/>
         <source>Meta+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1508"/>
+        <location filename="../ViewManager/ViewManager.py" line="1530"/>
         <source>Move up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1508"/>
+        <location filename="../ViewManager/ViewManager.py" line="1530"/>
         <source>Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1514"/>
+        <location filename="../ViewManager/ViewManager.py" line="1536"/>
         <source>Meta+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1520"/>
+        <location filename="../ViewManager/ViewManager.py" line="1542"/>
         <source>Move down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1520"/>
+        <location filename="../ViewManager/ViewManager.py" line="1542"/>
         <source>Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1526"/>
+        <location filename="../ViewManager/ViewManager.py" line="1548"/>
         <source>Meta+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1532"/>
+        <location filename="../ViewManager/ViewManager.py" line="1554"/>
         <source>Move left one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1566"/>
+        <location filename="../ViewManager/ViewManager.py" line="1588"/>
         <source>Alt+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1546"/>
+        <location filename="../ViewManager/ViewManager.py" line="1568"/>
         <source>Move right one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2446"/>
+        <location filename="../ViewManager/ViewManager.py" line="2468"/>
         <source>Alt+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1560"/>
+        <location filename="../ViewManager/ViewManager.py" line="1582"/>
         <source>Move left one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1611"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Ctrl+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1575"/>
+        <location filename="../ViewManager/ViewManager.py" line="1597"/>
         <source>Move right one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2200"/>
+        <location filename="../ViewManager/ViewManager.py" line="2222"/>
         <source>Ctrl+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1587"/>
+        <location filename="../ViewManager/ViewManager.py" line="1609"/>
         <source>Move to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2401"/>
+        <location filename="../ViewManager/ViewManager.py" line="2423"/>
         <source>Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1603"/>
+        <location filename="../ViewManager/ViewManager.py" line="1625"/>
         <source>Move to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1614"/>
+        <location filename="../ViewManager/ViewManager.py" line="1636"/>
         <source>Alt+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1620"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Move to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1628"/>
+        <location filename="../ViewManager/ViewManager.py" line="1650"/>
         <source>Meta+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2416"/>
+        <location filename="../ViewManager/ViewManager.py" line="2438"/>
         <source>End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1637"/>
+        <location filename="../ViewManager/ViewManager.py" line="1659"/>
         <source>Scroll view down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1749"/>
         <source>Ctrl+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1649"/>
+        <location filename="../ViewManager/ViewManager.py" line="1671"/>
         <source>Scroll view up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1710"/>
+        <location filename="../ViewManager/ViewManager.py" line="1732"/>
         <source>Ctrl+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1660"/>
+        <location filename="../ViewManager/ViewManager.py" line="1682"/>
         <source>Move up one paragraph</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1660"/>
+        <location filename="../ViewManager/ViewManager.py" line="1682"/>
         <source>Alt+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1669"/>
+        <location filename="../ViewManager/ViewManager.py" line="1691"/>
         <source>Move down one paragraph</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1669"/>
+        <location filename="../ViewManager/ViewManager.py" line="1691"/>
         <source>Alt+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1681"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>Move up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1681"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>PgUp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1690"/>
+        <location filename="../ViewManager/ViewManager.py" line="1712"/>
         <source>Move down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1690"/>
+        <location filename="../ViewManager/ViewManager.py" line="1712"/>
         <source>PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1696"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Meta+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1702"/>
+        <location filename="../ViewManager/ViewManager.py" line="1724"/>
         <source>Move to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1713"/>
+        <location filename="../ViewManager/ViewManager.py" line="1735"/>
         <source>Ctrl+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1719"/>
+        <location filename="../ViewManager/ViewManager.py" line="1741"/>
         <source>Move to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1730"/>
+        <location filename="../ViewManager/ViewManager.py" line="1752"/>
         <source>Ctrl+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Indent one level</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1745"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Unindent one level</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1745"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Shift+Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1755"/>
+        <location filename="../ViewManager/ViewManager.py" line="1777"/>
         <source>Extend selection left one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1755"/>
+        <location filename="../ViewManager/ViewManager.py" line="1777"/>
         <source>Shift+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1764"/>
+        <location filename="../ViewManager/ViewManager.py" line="1786"/>
         <source>Meta+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1770"/>
+        <location filename="../ViewManager/ViewManager.py" line="1792"/>
         <source>Extend selection right one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1770"/>
+        <location filename="../ViewManager/ViewManager.py" line="1792"/>
         <source>Shift+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1779"/>
+        <location filename="../ViewManager/ViewManager.py" line="1801"/>
         <source>Meta+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1785"/>
+        <location filename="../ViewManager/ViewManager.py" line="1807"/>
         <source>Extend selection up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1785"/>
+        <location filename="../ViewManager/ViewManager.py" line="1807"/>
         <source>Shift+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1794"/>
+        <location filename="../ViewManager/ViewManager.py" line="1816"/>
         <source>Meta+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1800"/>
+        <location filename="../ViewManager/ViewManager.py" line="1822"/>
         <source>Extend selection down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1800"/>
+        <location filename="../ViewManager/ViewManager.py" line="1822"/>
         <source>Shift+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1809"/>
+        <location filename="../ViewManager/ViewManager.py" line="1831"/>
         <source>Meta+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1815"/>
+        <location filename="../ViewManager/ViewManager.py" line="1837"/>
         <source>Extend selection left one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="1873"/>
+        <source>Alt+Shift+Left</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="1851"/>
-        <source>Alt+Shift+Left</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1829"/>
         <source>Extend selection right one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2461"/>
+        <location filename="../ViewManager/ViewManager.py" line="2483"/>
         <source>Alt+Shift+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1843"/>
+        <location filename="../ViewManager/ViewManager.py" line="1865"/>
         <source>Extend selection left one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2555"/>
+        <location filename="../ViewManager/ViewManager.py" line="2577"/>
         <source>Ctrl+Shift+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1860"/>
+        <location filename="../ViewManager/ViewManager.py" line="1882"/>
         <source>Extend selection right one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2217"/>
+        <location filename="../ViewManager/ViewManager.py" line="2239"/>
         <source>Ctrl+Shift+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1877"/>
+        <location filename="../ViewManager/ViewManager.py" line="1899"/>
         <source>Extend selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1889"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Shift+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1895"/>
+        <location filename="../ViewManager/ViewManager.py" line="1917"/>
         <source>Extend selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1903"/>
-        <source>Meta+Shift+E</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1906"/>
-        <source>Shift+End</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1912"/>
-        <source>Extend selection up one paragraph</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1912"/>
-        <source>Alt+Shift+Up</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1925"/>
-        <source>Extend selection down one paragraph</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="1925"/>
+        <source>Meta+Shift+E</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1928"/>
+        <source>Shift+End</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1934"/>
+        <source>Extend selection up one paragraph</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1934"/>
+        <source>Alt+Shift+Up</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
+        <source>Extend selection down one paragraph</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Alt+Shift+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
-        <source>Shift+PgUp</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1950"/>
-        <source>Extend selection down one page</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1950"/>
-        <source>Shift+PgDown</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="1960"/>
+        <source>Shift+PgUp</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1972"/>
+        <source>Extend selection down one page</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1972"/>
+        <source>Shift+PgDown</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1982"/>
         <source>Meta+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1966"/>
+        <location filename="../ViewManager/ViewManager.py" line="1988"/>
         <source>Extend selection to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1974"/>
+        <location filename="../ViewManager/ViewManager.py" line="1996"/>
         <source>Ctrl+Shift+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1977"/>
+        <location filename="../ViewManager/ViewManager.py" line="1999"/>
         <source>Ctrl+Shift+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1983"/>
+        <location filename="../ViewManager/ViewManager.py" line="2005"/>
         <source>Extend selection to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1991"/>
+        <location filename="../ViewManager/ViewManager.py" line="2013"/>
         <source>Ctrl+Shift+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2016"/>
         <source>Ctrl+Shift+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2000"/>
+        <location filename="../ViewManager/ViewManager.py" line="2022"/>
         <source>Delete previous character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2000"/>
+        <location filename="../ViewManager/ViewManager.py" line="2022"/>
         <source>Backspace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2009"/>
-        <source>Meta+H</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2012"/>
-        <source>Shift+Backspace</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2018"/>
-        <source>Delete previous character if not at start of line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2031"/>
-        <source>Delete current character</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2031"/>
+        <source>Meta+H</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2034"/>
+        <source>Shift+Backspace</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2040"/>
+        <source>Delete previous character if not at start of line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2053"/>
+        <source>Delete current character</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2053"/>
         <source>Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2039"/>
+        <location filename="../ViewManager/ViewManager.py" line="2061"/>
         <source>Meta+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2045"/>
+        <location filename="../ViewManager/ViewManager.py" line="2067"/>
         <source>Delete word to left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2045"/>
+        <location filename="../ViewManager/ViewManager.py" line="2067"/>
         <source>Ctrl+Backspace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2056"/>
+        <location filename="../ViewManager/ViewManager.py" line="2078"/>
         <source>Delete word to right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2056"/>
+        <location filename="../ViewManager/ViewManager.py" line="2078"/>
         <source>Ctrl+Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2066"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Delete line to left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2066"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2077"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Delete line to right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2083"/>
+        <location filename="../ViewManager/ViewManager.py" line="2105"/>
         <source>Meta+K</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2086"/>
+        <location filename="../ViewManager/ViewManager.py" line="2108"/>
         <source>Ctrl+Shift+Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Insert new line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Return</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Enter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2115"/>
-        <source>Delete current line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2115"/>
-        <source>Ctrl+Shift+L</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2126"/>
-        <source>Duplicate current line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2126"/>
-        <source>Ctrl+D</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2137"/>
-        <source>Swap current and previous lines</source>
+        <source>Delete current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="2137"/>
+        <source>Ctrl+Shift+L</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <source>Duplicate current line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <source>Ctrl+D</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2159"/>
+        <source>Swap current and previous lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2159"/>
         <source>Ctrl+T</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2160"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Cut current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2160"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Alt+Shift+L</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2170"/>
-        <source>Copy current line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2170"/>
-        <source>Ctrl+Shift+T</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
-        <source>Toggle insert/overtype</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
-        <source>Ins</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2745"/>
-        <source>Convert selection to lower case</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2745"/>
-        <source>Alt+Shift+U</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2757"/>
-        <source>Convert selection to upper case</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2757"/>
-        <source>Ctrl+Shift+U</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2192"/>
-        <source>Move to end of display line</source>
+        <source>Copy current line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
+        <source>Ctrl+Shift+T</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2203"/>
+        <source>Toggle insert/overtype</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="2203"/>
+        <source>Ins</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2767"/>
+        <source>Convert selection to lower case</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2767"/>
+        <source>Alt+Shift+U</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2779"/>
+        <source>Convert selection to upper case</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2779"/>
+        <source>Ctrl+Shift+U</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
+        <source>Move to end of display line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2225"/>
         <source>Alt+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2209"/>
+        <location filename="../ViewManager/ViewManager.py" line="2231"/>
         <source>Extend selection to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2223"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <source>Formfeed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2232"/>
+        <location filename="../ViewManager/ViewManager.py" line="2254"/>
         <source>Escape</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2232"/>
+        <location filename="../ViewManager/ViewManager.py" line="2254"/>
         <source>Esc</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2241"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Extend rectangular selection down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2241"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Alt+Ctrl+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2251"/>
+        <location filename="../ViewManager/ViewManager.py" line="2273"/>
         <source>Meta+Alt+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2257"/>
+        <location filename="../ViewManager/ViewManager.py" line="2279"/>
         <source>Extend rectangular selection up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2257"/>
+        <location filename="../ViewManager/ViewManager.py" line="2279"/>
         <source>Alt+Ctrl+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2266"/>
+        <location filename="../ViewManager/ViewManager.py" line="2288"/>
         <source>Meta+Alt+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2272"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Extend rectangular selection left one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2272"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Alt+Ctrl+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2284"/>
+        <location filename="../ViewManager/ViewManager.py" line="2306"/>
         <source>Meta+Alt+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2290"/>
+        <location filename="../ViewManager/ViewManager.py" line="2312"/>
         <source>Extend rectangular selection right one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2290"/>
+        <location filename="../ViewManager/ViewManager.py" line="2312"/>
         <source>Alt+Ctrl+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2302"/>
+        <location filename="../ViewManager/ViewManager.py" line="2324"/>
         <source>Meta+Alt+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2308"/>
+        <location filename="../ViewManager/ViewManager.py" line="2330"/>
         <source>Extend rectangular selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2321"/>
+        <location filename="../ViewManager/ViewManager.py" line="2343"/>
         <source>Alt+Shift+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2327"/>
+        <location filename="../ViewManager/ViewManager.py" line="2349"/>
         <source>Extend rectangular selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2337"/>
+        <location filename="../ViewManager/ViewManager.py" line="2359"/>
         <source>Meta+Alt+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2340"/>
+        <location filename="../ViewManager/ViewManager.py" line="2362"/>
         <source>Alt+Shift+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2346"/>
+        <location filename="../ViewManager/ViewManager.py" line="2368"/>
         <source>Extend rectangular selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2346"/>
+        <location filename="../ViewManager/ViewManager.py" line="2368"/>
         <source>Alt+Shift+PgUp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2361"/>
+        <location filename="../ViewManager/ViewManager.py" line="2383"/>
         <source>Extend rectangular selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2361"/>
+        <location filename="../ViewManager/ViewManager.py" line="2383"/>
         <source>Alt+Shift+PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2373"/>
+        <location filename="../ViewManager/ViewManager.py" line="2395"/>
         <source>Meta+Alt+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2379"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Duplicate current selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2379"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Ctrl+Shift+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2393"/>
+        <location filename="../ViewManager/ViewManager.py" line="2415"/>
         <source>Scroll to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2408"/>
+        <location filename="../ViewManager/ViewManager.py" line="2430"/>
         <source>Scroll to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2423"/>
+        <location filename="../ViewManager/ViewManager.py" line="2445"/>
         <source>Scroll vertically to center current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2431"/>
-        <source>Meta+L</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2438"/>
-        <source>Move to end of next word</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2453"/>
+        <source>Meta+L</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2460"/>
+        <source>Move to end of next word</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2475"/>
         <source>Extend selection to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2469"/>
+        <location filename="../ViewManager/ViewManager.py" line="2491"/>
         <source>Move to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2481"/>
+        <location filename="../ViewManager/ViewManager.py" line="2503"/>
         <source>Extend selection to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2493"/>
+        <location filename="../ViewManager/ViewManager.py" line="2515"/>
         <source>Move to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2501"/>
+        <location filename="../ViewManager/ViewManager.py" line="2523"/>
         <source>Meta+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2508"/>
+        <location filename="../ViewManager/ViewManager.py" line="2530"/>
         <source>Extend selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2519"/>
+        <location filename="../ViewManager/ViewManager.py" line="2541"/>
         <source>Meta+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2526"/>
+        <location filename="../ViewManager/ViewManager.py" line="2548"/>
         <source>Extend rectangular selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2536"/>
+        <location filename="../ViewManager/ViewManager.py" line="2558"/>
         <source>Meta+Alt+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2544"/>
+        <location filename="../ViewManager/ViewManager.py" line="2566"/>
         <source>Extend selection to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2563"/>
+        <location filename="../ViewManager/ViewManager.py" line="2585"/>
         <source>Move to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2577"/>
+        <location filename="../ViewManager/ViewManager.py" line="2599"/>
         <source>Extend selection to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2592"/>
+        <location filename="../ViewManager/ViewManager.py" line="2614"/>
         <source>Move to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2609"/>
+        <location filename="../ViewManager/ViewManager.py" line="2631"/>
         <source>Extend selection to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2626"/>
+        <location filename="../ViewManager/ViewManager.py" line="2648"/>
         <source>Move to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2640"/>
+        <location filename="../ViewManager/ViewManager.py" line="2662"/>
         <source>Extend selection to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2655"/>
+        <location filename="../ViewManager/ViewManager.py" line="2677"/>
         <source>Stuttered move up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2667"/>
+        <location filename="../ViewManager/ViewManager.py" line="2689"/>
         <source>Stuttered extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2680"/>
+        <location filename="../ViewManager/ViewManager.py" line="2702"/>
         <source>Stuttered move down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2692"/>
+        <location filename="../ViewManager/ViewManager.py" line="2714"/>
         <source>Stuttered extend selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2705"/>
+        <location filename="../ViewManager/ViewManager.py" line="2727"/>
         <source>Delete right to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2713"/>
+        <location filename="../ViewManager/ViewManager.py" line="2735"/>
         <source>Alt+Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2720"/>
+        <location filename="../ViewManager/ViewManager.py" line="2742"/>
         <source>Move selected lines up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2732"/>
+        <location filename="../ViewManager/ViewManager.py" line="2754"/>
         <source>Move selected lines down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3447"/>
+        <location filename="../ViewManager/ViewManager.py" line="3471"/>
         <source>Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2875"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>&amp;Search...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2875"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2883"/>
+        <location filename="../ViewManager/ViewManager.py" line="2907"/>
         <source>Search for a text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2885"/>
+        <location filename="../ViewManager/ViewManager.py" line="2909"/>
         <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Search next</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Search &amp;next</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2904"/>
+        <location filename="../ViewManager/ViewManager.py" line="2928"/>
         <source>Search next occurrence of text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2906"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Search previous</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Search &amp;previous</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2924"/>
+        <location filename="../ViewManager/ViewManager.py" line="2948"/>
         <source>Search previous occurrence of text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2926"/>
+        <location filename="../ViewManager/ViewManager.py" line="2950"/>
         <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2936"/>
+        <location filename="../ViewManager/ViewManager.py" line="2960"/>
         <source>Clear search markers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2936"/>
+        <location filename="../ViewManager/ViewManager.py" line="2960"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2944"/>
+        <location filename="../ViewManager/ViewManager.py" line="2968"/>
         <source>Clear all displayed search markers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2946"/>
+        <location filename="../ViewManager/ViewManager.py" line="2970"/>
         <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>Replace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>&amp;Replace...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3008"/>
+        <location filename="../ViewManager/ViewManager.py" line="3032"/>
         <source>Replace some text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3010"/>
+        <location filename="../ViewManager/ViewManager.py" line="3034"/>
         <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -78784,7 +78779,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2776"/>
+        <location filename="../ViewManager/ViewManager.py" line="2798"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
@@ -78920,1282 +78915,1282 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Insert new line below current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Shift+Return</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Shift+Enter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3352"/>
+        <location filename="../ViewManager/ViewManager.py" line="3376"/>
         <source>&amp;Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2786"/>
+        <location filename="../ViewManager/ViewManager.py" line="2808"/>
         <source>&amp;Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2843"/>
+        <location filename="../ViewManager/ViewManager.py" line="2867"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2955"/>
+        <location filename="../ViewManager/ViewManager.py" line="2979"/>
         <source>Search current word forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2955"/>
+        <location filename="../ViewManager/ViewManager.py" line="2979"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2966"/>
+        <location filename="../ViewManager/ViewManager.py" line="2990"/>
         <source>Search next occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2969"/>
+        <location filename="../ViewManager/ViewManager.py" line="2993"/>
         <source>&lt;b&gt;Search current word forward&lt;/b&gt;&lt;p&gt;Search the next occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2978"/>
+        <location filename="../ViewManager/ViewManager.py" line="3002"/>
         <source>Search current word backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2978"/>
+        <location filename="../ViewManager/ViewManager.py" line="3002"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2989"/>
+        <location filename="../ViewManager/ViewManager.py" line="3013"/>
         <source>Search previous occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2992"/>
+        <location filename="../ViewManager/ViewManager.py" line="3016"/>
         <source>&lt;b&gt;Search current word backward&lt;/b&gt;&lt;p&gt;Search the previous occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3387"/>
+        <location filename="../ViewManager/ViewManager.py" line="3411"/>
         <source>Quicksearch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3088"/>
+        <location filename="../ViewManager/ViewManager.py" line="3112"/>
         <source>&amp;Quicksearch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3088"/>
+        <location filename="../ViewManager/ViewManager.py" line="3112"/>
         <source>Ctrl+Shift+K</source>
         <comment>Search|Quicksearch</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3096"/>
+        <location filename="../ViewManager/ViewManager.py" line="3120"/>
         <source>Perform a quicksearch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3098"/>
-        <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
-        <source>Quicksearch backwards</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
-        <source>Quicksearch &amp;backwards</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
-        <source>Ctrl+Shift+J</source>
-        <comment>Search|Quicksearch backwards</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3119"/>
-        <source>Perform a quicksearch backwards</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3122"/>
+        <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <source>Quicksearch backwards</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <source>Quicksearch &amp;backwards</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <source>Ctrl+Shift+J</source>
+        <comment>Search|Quicksearch backwards</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3143"/>
+        <source>Perform a quicksearch backwards</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3146"/>
         <source>&lt;b&gt;Quicksearch backwards&lt;/b&gt;&lt;p&gt;This searches the previous occurrence of the quicksearch text.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Quicksearch extend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Quicksearch e&amp;xtend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Ctrl+Shift+H</source>
         <comment>Search|Quicksearch extend</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3139"/>
+        <location filename="../ViewManager/ViewManager.py" line="3163"/>
         <source>Extend the quicksearch to the end of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3142"/>
+        <location filename="../ViewManager/ViewManager.py" line="3166"/>
         <source>&lt;b&gt;Quicksearch extend&lt;/b&gt;&lt;p&gt;This extends the quicksearch text to the end of the word currently found.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3160"/>
+        <location filename="../ViewManager/ViewManager.py" line="3184"/>
         <source>Goto Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <location filename="../ViewManager/ViewManager.py" line="3176"/>
         <source>&amp;Goto Line...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <location filename="../ViewManager/ViewManager.py" line="3176"/>
         <source>Ctrl+G</source>
         <comment>Search|Goto Line</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3162"/>
+        <location filename="../ViewManager/ViewManager.py" line="3186"/>
         <source>&lt;b&gt;Goto Line&lt;/b&gt;&lt;p&gt;Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3179"/>
-        <source>Goto Brace</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3171"/>
-        <source>Goto &amp;Brace</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3171"/>
-        <source>Ctrl+L</source>
-        <comment>Search|Goto Brace</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3181"/>
-        <source>&lt;b&gt;Goto Brace&lt;/b&gt;&lt;p&gt;Go to the matching brace in the current editor.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3200"/>
-        <source>Goto Last Edit Location</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
-        <source>Goto Last &amp;Edit Location</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
-        <source>Ctrl+Shift+G</source>
-        <comment>Search|Goto Last Edit Location</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3203"/>
+        <source>Goto Brace</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3195"/>
+        <source>Goto &amp;Brace</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3195"/>
+        <source>Ctrl+L</source>
+        <comment>Search|Goto Brace</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3205"/>
+        <source>&lt;b&gt;Goto Brace&lt;/b&gt;&lt;p&gt;Go to the matching brace in the current editor.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3224"/>
+        <source>Goto Last Edit Location</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3213"/>
+        <source>Goto Last &amp;Edit Location</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3213"/>
+        <source>Ctrl+Shift+G</source>
+        <comment>Search|Goto Last Edit Location</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3227"/>
         <source>&lt;b&gt;Goto Last Edit Location&lt;/b&gt;&lt;p&gt;Go to the location of the last edit in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3212"/>
-        <source>Goto Previous Method or Class</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3212"/>
-        <source>Ctrl+Shift+Up</source>
-        <comment>Search|Goto Previous Method or Class</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3222"/>
-        <source>Go to the previous method or class definition</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3226"/>
-        <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3236"/>
-        <source>Goto Next Method or Class</source>
+        <source>Goto Previous Method or Class</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3236"/>
-        <source>Ctrl+Shift+Down</source>
-        <comment>Search|Goto Next Method or Class</comment>
+        <source>Ctrl+Shift+Up</source>
+        <comment>Search|Goto Previous Method or Class</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3246"/>
+        <source>Go to the previous method or class definition</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3250"/>
+        <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3260"/>
+        <source>Goto Next Method or Class</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3260"/>
+        <source>Ctrl+Shift+Down</source>
+        <comment>Search|Goto Next Method or Class</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3270"/>
         <source>Go to the next method or class definition</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3248"/>
+        <location filename="../ViewManager/ViewManager.py" line="3272"/>
         <source>&lt;b&gt;Goto Next Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the next method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Search in Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Search in &amp;Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3267"/>
+        <location filename="../ViewManager/ViewManager.py" line="3291"/>
         <source>Search for a text in files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3269"/>
+        <location filename="../ViewManager/ViewManager.py" line="3293"/>
         <source>&lt;b&gt;Search in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Replace in Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Replace in F&amp;iles...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3286"/>
-        <source>Search for a text in files and replace it</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3288"/>
-        <source>&lt;b&gt;Replace in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
-        <source>Search in Open Files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
-        <source>Search in Open Files...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
-        <source>Meta+Ctrl+Alt+F</source>
-        <comment>Search|Search Open Files</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3310"/>
-        <source>Search for a text in open files</source>
+        <source>Search for a text in files and replace it</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3312"/>
-        <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
-        <source>Replace in Open Files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
-        <source>Replace in Open Files...</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
-        <source>Meta+Ctrl+Alt+R</source>
-        <comment>Search|Replace in Open Files</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3332"/>
-        <source>Search for a text in open files and replace it</source>
+        <source>&lt;b&gt;Replace in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
+        <source>Search in Open Files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
+        <source>Search in Open Files...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
+        <source>Meta+Ctrl+Alt+F</source>
+        <comment>Search|Search Open Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3334"/>
+        <source>Search for a text in open files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3336"/>
+        <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
+        <source>Replace in Open Files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
+        <source>Replace in Open Files...</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
+        <source>Meta+Ctrl+Alt+R</source>
+        <comment>Search|Replace in Open Files</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
+        <source>Search for a text in open files and replace it</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3358"/>
         <source>&lt;b&gt;Replace in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3406"/>
+        <location filename="../ViewManager/ViewManager.py" line="3430"/>
         <source>&lt;p&gt;Enter the searchtext directly into this field. The search will be performed case insensitive. The quicksearch function is activated upon activation of the quicksearch next action (default key Ctrl+Shift+K), if this entry field does not have the input focus. Otherwise it searches for the next occurrence of the text entered. The quicksearch backwards action (default key Ctrl+Shift+J) searches backward. Activating the &apos;quicksearch extend&apos; action (default key Ctrl+Shift+H) extends the current searchtext to the end of the currently found word. The quicksearch can be ended by pressing the Return key while the quicksearch entry has the the input focus.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3433"/>
+        <location filename="../ViewManager/ViewManager.py" line="3457"/>
         <source>Quicksearch Textedit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom in</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom &amp;in</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3496"/>
+        <location filename="../ViewManager/ViewManager.py" line="3520"/>
         <source>Zoom in on the text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3498"/>
+        <location filename="../ViewManager/ViewManager.py" line="3522"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom &amp;out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3515"/>
+        <location filename="../ViewManager/ViewManager.py" line="3539"/>
         <source>Zoom out on the text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3517"/>
+        <location filename="../ViewManager/ViewManager.py" line="3541"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Zoom reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3533"/>
+        <location filename="../ViewManager/ViewManager.py" line="3557"/>
         <source>Reset the zoom of the text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3535"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>Zoom</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>&amp;Zoom</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3552"/>
+        <location filename="../ViewManager/ViewManager.py" line="3576"/>
         <source>Zoom the text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3554"/>
+        <location filename="../ViewManager/ViewManager.py" line="3578"/>
         <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3567"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Toggle all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <location filename="../ViewManager/ViewManager.py" line="3587"/>
         <source>&amp;Toggle all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3569"/>
+        <location filename="../ViewManager/ViewManager.py" line="3593"/>
         <source>&lt;b&gt;Toggle all folds&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <location filename="../ViewManager/ViewManager.py" line="3607"/>
         <source>Toggle all folds (including children)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3577"/>
-        <source>Toggle all &amp;folds (including children)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3585"/>
-        <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3599"/>
-        <source>Toggle current fold</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3595"/>
-        <source>Toggle &amp;current fold</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3601"/>
+        <source>Toggle all &amp;folds (including children)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3609"/>
+        <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3623"/>
+        <source>Toggle current fold</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3619"/>
+        <source>Toggle &amp;current fold</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3625"/>
         <source>&lt;b&gt;Toggle current fold&lt;/b&gt;&lt;p&gt;Toggle the folds of the current line of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3631"/>
+        <location filename="../ViewManager/ViewManager.py" line="3655"/>
         <source>Remove all highlights</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3633"/>
+        <location filename="../ViewManager/ViewManager.py" line="3657"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3641"/>
+        <location filename="../ViewManager/ViewManager.py" line="3665"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3641"/>
-        <source>New &amp;Document View</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3646"/>
-        <source>Open a new view of the current document</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3648"/>
-        <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3658"/>
-        <source>New Document View (with new split)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3665"/>
+        <source>New &amp;Document View</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3670"/>
+        <source>Open a new view of the current document</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3672"/>
+        <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3682"/>
+        <source>New Document View (with new split)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3689"/>
         <source>Open a new view of the current document in a new split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3668"/>
+        <location filename="../ViewManager/ViewManager.py" line="3692"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3703"/>
         <source>Split view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3703"/>
         <source>&amp;Split view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3684"/>
+        <location filename="../ViewManager/ViewManager.py" line="3708"/>
         <source>Add a split to the view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3686"/>
+        <location filename="../ViewManager/ViewManager.py" line="3710"/>
         <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3694"/>
+        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>Arrange horizontally</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3694"/>
+        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>Arrange &amp;horizontally</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3698"/>
+        <location filename="../ViewManager/ViewManager.py" line="3722"/>
         <source>Arrange the splitted views horizontally</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3700"/>
-        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3709"/>
-        <source>Remove split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3709"/>
-        <source>&amp;Remove split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3714"/>
-        <source>Remove the current split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3716"/>
-        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3724"/>
-        <source>Next split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3724"/>
-        <source>&amp;Next split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3724"/>
-        <source>Ctrl+Alt+N</source>
-        <comment>View|Next split</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3731"/>
-        <source>Move to the next split</source>
+        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3733"/>
+        <source>Remove split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3733"/>
-        <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
-        <source>Previous split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
-        <source>&amp;Previous split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
-        <source>Ctrl+Alt+P</source>
-        <comment>View|Previous split</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3747"/>
-        <source>Move to the previous split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3749"/>
-        <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
+        <source>&amp;Remove split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3738"/>
+        <source>Remove the current split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3740"/>
+        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
+        <source>Next split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
+        <source>&amp;Next split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
+        <source>Ctrl+Alt+N</source>
+        <comment>View|Next split</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3755"/>
+        <source>Move to the next split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3757"/>
+        <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
+        <source>Previous split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
+        <source>&amp;Previous split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
+        <source>Ctrl+Alt+P</source>
+        <comment>View|Previous split</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3771"/>
+        <source>Move to the previous split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3773"/>
+        <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3781"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3762"/>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <source>Preview the current file in the web browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3764"/>
+        <location filename="../ViewManager/ViewManager.py" line="3788"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3833"/>
+        <location filename="../ViewManager/ViewManager.py" line="3857"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3870"/>
+        <location filename="../ViewManager/ViewManager.py" line="3894"/>
         <source>View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3906"/>
-        <source>Start Macro Recording</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3900"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3908"/>
-        <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
-        <source>Stop Macro Recording</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3916"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3922"/>
-        <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3934"/>
-        <source>Run Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3930"/>
-        <source>&amp;Run Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3936"/>
-        <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3948"/>
-        <source>Delete Macro</source>
+        <source>Start Macro Recording</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3924"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3932"/>
+        <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3944"/>
-        <source>&amp;Delete Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3950"/>
-        <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3962"/>
-        <source>Load Macro</source>
+        <source>Stop Macro Recording</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3940"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3946"/>
+        <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3958"/>
-        <source>&amp;Load Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3964"/>
-        <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3976"/>
-        <source>Save Macro</source>
+        <source>Run Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3954"/>
+        <source>&amp;Run Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3960"/>
+        <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3972"/>
+        <source>Delete Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3968"/>
+        <source>&amp;Delete Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3974"/>
+        <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3986"/>
+        <source>Load Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3982"/>
+        <source>&amp;Load Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3988"/>
+        <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4000"/>
+        <source>Save Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3996"/>
         <source>&amp;Save Macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3978"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3994"/>
+        <location filename="../ViewManager/ViewManager.py" line="4018"/>
         <source>&amp;Macros</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4020"/>
+        <location filename="../ViewManager/ViewManager.py" line="4044"/>
         <source>Toggle Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
         <source>&amp;Toggle Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4022"/>
+        <location filename="../ViewManager/ViewManager.py" line="4046"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4039"/>
+        <location filename="../ViewManager/ViewManager.py" line="4063"/>
         <source>Next Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>&amp;Next Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4041"/>
+        <location filename="../ViewManager/ViewManager.py" line="4065"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <location filename="../ViewManager/ViewManager.py" line="4081"/>
         <source>Previous Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <location filename="../ViewManager/ViewManager.py" line="4073"/>
         <source>&amp;Previous Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <location filename="../ViewManager/ViewManager.py" line="4073"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4059"/>
+        <location filename="../ViewManager/ViewManager.py" line="4083"/>
         <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4074"/>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <source>Clear Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4091"/>
         <source>&amp;Clear Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4091"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4076"/>
-        <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4090"/>
-        <source>Goto Syntax Error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4084"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4092"/>
-        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4105"/>
-        <source>Clear Syntax Errors</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4100"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4107"/>
-        <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4122"/>
-        <source>Next warning message</source>
+        <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4114"/>
+        <source>Goto Syntax Error</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4108"/>
+        <source>&amp;Goto Syntax Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="4116"/>
-        <source>&amp;Next warning message</source>
+        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4129"/>
+        <source>Clear Syntax Errors</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="4124"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4131"/>
+        <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4146"/>
+        <source>Next warning message</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4140"/>
+        <source>&amp;Next warning message</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4148"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4141"/>
+        <location filename="../ViewManager/ViewManager.py" line="4165"/>
         <source>Previous warning message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4133"/>
+        <location filename="../ViewManager/ViewManager.py" line="4157"/>
         <source>&amp;Previous warning message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4143"/>
+        <location filename="../ViewManager/ViewManager.py" line="4167"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4159"/>
+        <location filename="../ViewManager/ViewManager.py" line="4183"/>
         <source>Clear Warning Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4152"/>
+        <location filename="../ViewManager/ViewManager.py" line="4176"/>
         <source>Clear &amp;Warning Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4161"/>
+        <location filename="../ViewManager/ViewManager.py" line="4185"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4175"/>
+        <location filename="../ViewManager/ViewManager.py" line="4199"/>
         <source>Next uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4169"/>
+        <location filename="../ViewManager/ViewManager.py" line="4193"/>
         <source>&amp;Next uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4177"/>
+        <location filename="../ViewManager/ViewManager.py" line="4201"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4194"/>
+        <location filename="../ViewManager/ViewManager.py" line="4218"/>
         <source>Previous uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4186"/>
+        <location filename="../ViewManager/ViewManager.py" line="4210"/>
         <source>&amp;Previous uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4196"/>
+        <location filename="../ViewManager/ViewManager.py" line="4220"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4236"/>
         <source>Next Task</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4206"/>
+        <location filename="../ViewManager/ViewManager.py" line="4230"/>
         <source>&amp;Next Task</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4214"/>
+        <location filename="../ViewManager/ViewManager.py" line="4238"/>
         <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4229"/>
+        <location filename="../ViewManager/ViewManager.py" line="4253"/>
         <source>Previous Task</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4222"/>
-        <source>&amp;Previous Task</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4231"/>
-        <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <source>&amp;Previous Task</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4255"/>
+        <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4270"/>
         <source>Next Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4240"/>
-        <source>&amp;Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4248"/>
-        <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <source>&amp;Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4272"/>
+        <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4288"/>
         <source>Previous Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4257"/>
+        <location filename="../ViewManager/ViewManager.py" line="4281"/>
         <source>&amp;Previous Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4266"/>
+        <location filename="../ViewManager/ViewManager.py" line="4290"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4285"/>
+        <location filename="../ViewManager/ViewManager.py" line="4309"/>
         <source>&amp;Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4355"/>
         <source>Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Check spelling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Check &amp;spelling...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4373"/>
+        <location filename="../ViewManager/ViewManager.py" line="4397"/>
         <source>Perform spell check of current editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4399"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4383"/>
+        <location filename="../ViewManager/ViewManager.py" line="4407"/>
         <source>Automatic spell checking</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4383"/>
+        <location filename="../ViewManager/ViewManager.py" line="4407"/>
         <source>&amp;Automatic spell checking</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4391"/>
+        <location filename="../ViewManager/ViewManager.py" line="4415"/>
         <source>(De-)Activate automatic spell checking</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4393"/>
+        <location filename="../ViewManager/ViewManager.py" line="4417"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4424"/>
+        <location filename="../ViewManager/ViewManager.py" line="4448"/>
         <source>Edit Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4426"/>
+        <location filename="../ViewManager/ViewManager.py" line="4450"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4429"/>
+        <location filename="../ViewManager/ViewManager.py" line="4453"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4434"/>
+        <location filename="../ViewManager/ViewManager.py" line="4458"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4437"/>
+        <location filename="../ViewManager/ViewManager.py" line="4461"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4460"/>
+        <location filename="../ViewManager/ViewManager.py" line="4484"/>
         <source>Spelling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4483"/>
+        <location filename="../ViewManager/ViewManager.py" line="4507"/>
         <source>Open files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4527"/>
+        <location filename="../ViewManager/ViewManager.py" line="4551"/>
         <source>File Modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4527"/>
+        <location filename="../ViewManager/ViewManager.py" line="4551"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4926"/>
+        <location filename="../ViewManager/ViewManager.py" line="4950"/>
         <source>Line: {0:5}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4932"/>
+        <location filename="../ViewManager/ViewManager.py" line="4956"/>
         <source>Pos: {0:5}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4953"/>
+        <location filename="../ViewManager/ViewManager.py" line="4977"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4960"/>
+        <location filename="../ViewManager/ViewManager.py" line="4984"/>
         <source>EOL Mode: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5371"/>
+        <location filename="../ViewManager/ViewManager.py" line="5395"/>
         <source>&amp;Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5365"/>
+        <location filename="../ViewManager/ViewManager.py" line="5389"/>
         <source>&amp;Add</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5368"/>
+        <location filename="../ViewManager/ViewManager.py" line="5392"/>
         <source>&amp;Edit...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6630"/>
+        <location filename="../ViewManager/ViewManager.py" line="6654"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6589"/>
+        <location filename="../ViewManager/ViewManager.py" line="6613"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6607"/>
+        <location filename="../ViewManager/ViewManager.py" line="6631"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6618"/>
+        <location filename="../ViewManager/ViewManager.py" line="6642"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6630"/>
+        <location filename="../ViewManager/ViewManager.py" line="6654"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3020"/>
-        <source>Replace and Search</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3020"/>
-        <source>Meta+R</source>
-        <comment>Search|Replace and Search</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3030"/>
-        <source>Replace the found text and search the next occurrence</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3033"/>
-        <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3044"/>
-        <source>Replace Occurrence</source>
+        <source>Replace and Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3044"/>
-        <source>Ctrl+Meta+R</source>
-        <comment>Search|Replace Occurrence</comment>
+        <source>Meta+R</source>
+        <comment>Search|Replace and Search</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3054"/>
-        <source>Replace the found text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3056"/>
-        <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3066"/>
-        <source>Replace All</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3066"/>
-        <source>Shift+Meta+R</source>
-        <comment>Search|Replace All</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3076"/>
-        <source>Replace search text occurrences</source>
+        <source>Replace the found text and search the next occurrence</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3057"/>
+        <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <source>Replace Occurrence</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <source>Ctrl+Meta+R</source>
+        <comment>Search|Replace Occurrence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3078"/>
+        <source>Replace the found text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3080"/>
+        <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <source>Replace All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <source>Shift+Meta+R</source>
+        <comment>Search|Replace All</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
+        <source>Replace search text occurrences</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3102"/>
         <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80221,57 +80216,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <location filename="../ViewManager/ViewManager.py" line="3638"/>
         <source>Clear all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3610"/>
+        <location filename="../ViewManager/ViewManager.py" line="3634"/>
         <source>Clear &amp;all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3616"/>
+        <location filename="../ViewManager/ViewManager.py" line="3640"/>
         <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Reverse selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Meta+Alt+R</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3774"/>
-        <source>Python AST Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3779"/>
-        <source>Show the AST for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3781"/>
-        <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3791"/>
-        <source>Python Disassembly Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Python AST Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3803"/>
+        <source>Show the AST for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3805"/>
+        <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3815"/>
+        <source>Python Disassembly Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
         <source>Show the Disassembly for the current Python file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3800"/>
+        <location filename="../ViewManager/ViewManager.py" line="3824"/>
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80290,6 +80285,27 @@
         <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1468"/>
+        <source>Generate Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1468"/>
+        <source>Ctrl+Alt+D</source>
+        <comment>Edit|Generate Docstring</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1475"/>
+        <source>Generate a docstring for the current function/method</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1478"/>
+        <source>&lt;b&gt;Generate Docstring&lt;/b&gt;&lt;p&gt;Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
--- a/eric6/i18n/eric6_en.ts	Fri Jan 22 16:55:43 2021 +0100
+++ b/eric6/i18n/eric6_en.ts	Sat Jan 23 12:02:52 2021 +0100
@@ -10957,17 +10957,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="828"/>
+        <location filename="../QScintilla/Editor.py" line="832"/>
         <source>Select to brace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="830"/>
+        <location filename="../QScintilla/Editor.py" line="834"/>
         <source>Select all</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="831"/>
+        <location filename="../QScintilla/Editor.py" line="835"/>
         <source>Deselect all</source>
         <translation type="unfinished"></translation>
     </message>
@@ -10977,12 +10977,12 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="839"/>
+        <location filename="../QScintilla/Editor.py" line="843"/>
         <source>Check spelling of selection...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="843"/>
+        <location filename="../QScintilla/Editor.py" line="847"/>
         <source>Remove from dictionary</source>
         <translation type="unfinished"></translation>
     </message>
@@ -11807,12 +11807,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="849"/>
-        <source>Insert Docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8715"/>
+        <location filename="../QScintilla/Editor.py" line="8726"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
@@ -77759,1972 +77754,1972 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Move left one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1494"/>
+        <location filename="../ViewManager/ViewManager.py" line="1516"/>
         <source>Move right one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1494"/>
+        <location filename="../ViewManager/ViewManager.py" line="1516"/>
         <source>Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1508"/>
+        <location filename="../ViewManager/ViewManager.py" line="1530"/>
         <source>Move up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1508"/>
+        <location filename="../ViewManager/ViewManager.py" line="1530"/>
         <source>Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1520"/>
+        <location filename="../ViewManager/ViewManager.py" line="1542"/>
         <source>Move down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1520"/>
+        <location filename="../ViewManager/ViewManager.py" line="1542"/>
         <source>Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1532"/>
+        <location filename="../ViewManager/ViewManager.py" line="1554"/>
         <source>Move left one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1566"/>
+        <location filename="../ViewManager/ViewManager.py" line="1588"/>
         <source>Alt+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1546"/>
+        <location filename="../ViewManager/ViewManager.py" line="1568"/>
         <source>Move right one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2446"/>
+        <location filename="../ViewManager/ViewManager.py" line="2468"/>
         <source>Alt+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1560"/>
+        <location filename="../ViewManager/ViewManager.py" line="1582"/>
         <source>Move left one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1611"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Ctrl+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1575"/>
+        <location filename="../ViewManager/ViewManager.py" line="1597"/>
         <source>Move right one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2200"/>
+        <location filename="../ViewManager/ViewManager.py" line="2222"/>
         <source>Ctrl+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2401"/>
+        <location filename="../ViewManager/ViewManager.py" line="2423"/>
         <source>Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1614"/>
+        <location filename="../ViewManager/ViewManager.py" line="1636"/>
         <source>Alt+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2416"/>
+        <location filename="../ViewManager/ViewManager.py" line="2438"/>
         <source>End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1637"/>
+        <location filename="../ViewManager/ViewManager.py" line="1659"/>
         <source>Scroll view down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1749"/>
         <source>Ctrl+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1649"/>
+        <location filename="../ViewManager/ViewManager.py" line="1671"/>
         <source>Scroll view up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1710"/>
+        <location filename="../ViewManager/ViewManager.py" line="1732"/>
         <source>Ctrl+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1660"/>
+        <location filename="../ViewManager/ViewManager.py" line="1682"/>
         <source>Move up one paragraph</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1660"/>
+        <location filename="../ViewManager/ViewManager.py" line="1682"/>
         <source>Alt+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1669"/>
+        <location filename="../ViewManager/ViewManager.py" line="1691"/>
         <source>Move down one paragraph</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1669"/>
+        <location filename="../ViewManager/ViewManager.py" line="1691"/>
         <source>Alt+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1681"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>Move up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1681"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>PgUp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1690"/>
+        <location filename="../ViewManager/ViewManager.py" line="1712"/>
         <source>Move down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1690"/>
+        <location filename="../ViewManager/ViewManager.py" line="1712"/>
         <source>PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1713"/>
+        <location filename="../ViewManager/ViewManager.py" line="1735"/>
         <source>Ctrl+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1730"/>
+        <location filename="../ViewManager/ViewManager.py" line="1752"/>
         <source>Ctrl+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Indent one level</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1745"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Unindent one level</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1745"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Shift+Tab</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1755"/>
+        <location filename="../ViewManager/ViewManager.py" line="1777"/>
         <source>Extend selection left one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1755"/>
+        <location filename="../ViewManager/ViewManager.py" line="1777"/>
         <source>Shift+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1770"/>
+        <location filename="../ViewManager/ViewManager.py" line="1792"/>
         <source>Extend selection right one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1770"/>
+        <location filename="../ViewManager/ViewManager.py" line="1792"/>
         <source>Shift+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1785"/>
+        <location filename="../ViewManager/ViewManager.py" line="1807"/>
         <source>Extend selection up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1785"/>
+        <location filename="../ViewManager/ViewManager.py" line="1807"/>
         <source>Shift+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1800"/>
+        <location filename="../ViewManager/ViewManager.py" line="1822"/>
         <source>Extend selection down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1800"/>
+        <location filename="../ViewManager/ViewManager.py" line="1822"/>
         <source>Shift+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1815"/>
+        <location filename="../ViewManager/ViewManager.py" line="1837"/>
         <source>Extend selection left one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="1873"/>
+        <source>Alt+Shift+Left</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="1851"/>
-        <source>Alt+Shift+Left</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1829"/>
         <source>Extend selection right one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2461"/>
+        <location filename="../ViewManager/ViewManager.py" line="2483"/>
         <source>Alt+Shift+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1843"/>
+        <location filename="../ViewManager/ViewManager.py" line="1865"/>
         <source>Extend selection left one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2555"/>
+        <location filename="../ViewManager/ViewManager.py" line="2577"/>
         <source>Ctrl+Shift+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1860"/>
+        <location filename="../ViewManager/ViewManager.py" line="1882"/>
         <source>Extend selection right one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2217"/>
+        <location filename="../ViewManager/ViewManager.py" line="2239"/>
         <source>Ctrl+Shift+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1889"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Shift+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2321"/>
+        <location filename="../ViewManager/ViewManager.py" line="2343"/>
         <source>Alt+Shift+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1906"/>
+        <location filename="../ViewManager/ViewManager.py" line="1928"/>
         <source>Shift+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1912"/>
+        <location filename="../ViewManager/ViewManager.py" line="1934"/>
         <source>Extend selection up one paragraph</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1912"/>
+        <location filename="../ViewManager/ViewManager.py" line="1934"/>
         <source>Alt+Shift+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1925"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Extend selection down one paragraph</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1925"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Alt+Shift+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Shift+PgUp</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1950"/>
+        <location filename="../ViewManager/ViewManager.py" line="1972"/>
         <source>Extend selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1950"/>
+        <location filename="../ViewManager/ViewManager.py" line="1972"/>
         <source>Shift+PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1977"/>
+        <location filename="../ViewManager/ViewManager.py" line="1999"/>
         <source>Ctrl+Shift+Home</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2016"/>
         <source>Ctrl+Shift+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2000"/>
+        <location filename="../ViewManager/ViewManager.py" line="2022"/>
         <source>Delete previous character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2000"/>
+        <location filename="../ViewManager/ViewManager.py" line="2022"/>
         <source>Backspace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2012"/>
+        <location filename="../ViewManager/ViewManager.py" line="2034"/>
         <source>Shift+Backspace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2031"/>
+        <location filename="../ViewManager/ViewManager.py" line="2053"/>
         <source>Delete current character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2031"/>
+        <location filename="../ViewManager/ViewManager.py" line="2053"/>
         <source>Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2045"/>
+        <location filename="../ViewManager/ViewManager.py" line="2067"/>
         <source>Delete word to left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2045"/>
+        <location filename="../ViewManager/ViewManager.py" line="2067"/>
         <source>Ctrl+Backspace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2056"/>
+        <location filename="../ViewManager/ViewManager.py" line="2078"/>
         <source>Delete word to right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2056"/>
+        <location filename="../ViewManager/ViewManager.py" line="2078"/>
         <source>Ctrl+Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2066"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Delete line to left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2066"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2077"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Delete line to right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2086"/>
+        <location filename="../ViewManager/ViewManager.py" line="2108"/>
         <source>Ctrl+Shift+Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Insert new line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Return</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Enter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Insert new line below current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Shift+Return</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Shift+Enter</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2115"/>
-        <source>Delete current line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2115"/>
-        <source>Ctrl+Shift+L</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2126"/>
-        <source>Duplicate current line</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2126"/>
-        <source>Ctrl+D</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2137"/>
-        <source>Swap current and previous lines</source>
+        <source>Delete current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="2137"/>
+        <source>Ctrl+Shift+L</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <source>Duplicate current line</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <source>Ctrl+D</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2159"/>
+        <source>Swap current and previous lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2159"/>
         <source>Ctrl+T</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2160"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Cut current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2160"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Alt+Shift+L</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2170"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Copy current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2170"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Ctrl+Shift+T</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
+        <location filename="../ViewManager/ViewManager.py" line="2203"/>
         <source>Toggle insert/overtype</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
-        <source>Ins</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2745"/>
-        <source>Convert selection to lower case</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2745"/>
-        <source>Alt+Shift+U</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2757"/>
-        <source>Convert selection to upper case</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2757"/>
-        <source>Ctrl+Shift+U</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2203"/>
+        <source>Ins</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2767"/>
+        <source>Convert selection to lower case</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2767"/>
+        <source>Alt+Shift+U</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2779"/>
+        <source>Convert selection to upper case</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2779"/>
+        <source>Ctrl+Shift+U</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2225"/>
         <source>Alt+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2223"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <source>Formfeed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2232"/>
+        <location filename="../ViewManager/ViewManager.py" line="2254"/>
         <source>Escape</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2232"/>
+        <location filename="../ViewManager/ViewManager.py" line="2254"/>
         <source>Esc</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2241"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Extend rectangular selection down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2241"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Alt+Ctrl+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2257"/>
+        <location filename="../ViewManager/ViewManager.py" line="2279"/>
         <source>Extend rectangular selection up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2257"/>
+        <location filename="../ViewManager/ViewManager.py" line="2279"/>
         <source>Alt+Ctrl+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2272"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Extend rectangular selection left one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2272"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Alt+Ctrl+Left</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2290"/>
+        <location filename="../ViewManager/ViewManager.py" line="2312"/>
         <source>Extend rectangular selection right one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2290"/>
+        <location filename="../ViewManager/ViewManager.py" line="2312"/>
         <source>Alt+Ctrl+Right</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2346"/>
+        <location filename="../ViewManager/ViewManager.py" line="2368"/>
         <source>Extend rectangular selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2361"/>
+        <location filename="../ViewManager/ViewManager.py" line="2383"/>
         <source>Extend rectangular selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2379"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Duplicate current selection</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2379"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Ctrl+Shift+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3352"/>
+        <location filename="../ViewManager/ViewManager.py" line="3376"/>
         <source>&amp;Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2786"/>
+        <location filename="../ViewManager/ViewManager.py" line="2808"/>
         <source>&amp;Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2843"/>
+        <location filename="../ViewManager/ViewManager.py" line="2867"/>
         <source>Edit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3447"/>
+        <location filename="../ViewManager/ViewManager.py" line="3471"/>
         <source>Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2875"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>&amp;Search...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2875"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2883"/>
+        <location filename="../ViewManager/ViewManager.py" line="2907"/>
         <source>Search for a text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2885"/>
+        <location filename="../ViewManager/ViewManager.py" line="2909"/>
         <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Search next</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Search &amp;next</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2904"/>
+        <location filename="../ViewManager/ViewManager.py" line="2928"/>
         <source>Search next occurrence of text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2906"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Search previous</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Search &amp;previous</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2924"/>
+        <location filename="../ViewManager/ViewManager.py" line="2948"/>
         <source>Search previous occurrence of text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2926"/>
+        <location filename="../ViewManager/ViewManager.py" line="2950"/>
         <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2936"/>
+        <location filename="../ViewManager/ViewManager.py" line="2960"/>
         <source>Clear search markers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2936"/>
+        <location filename="../ViewManager/ViewManager.py" line="2960"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2944"/>
+        <location filename="../ViewManager/ViewManager.py" line="2968"/>
         <source>Clear all displayed search markers</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2946"/>
+        <location filename="../ViewManager/ViewManager.py" line="2970"/>
         <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>Replace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>&amp;Replace...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3008"/>
+        <location filename="../ViewManager/ViewManager.py" line="3032"/>
         <source>Replace some text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3010"/>
+        <location filename="../ViewManager/ViewManager.py" line="3034"/>
         <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3387"/>
+        <location filename="../ViewManager/ViewManager.py" line="3411"/>
         <source>Quicksearch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3088"/>
+        <location filename="../ViewManager/ViewManager.py" line="3112"/>
         <source>&amp;Quicksearch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3088"/>
+        <location filename="../ViewManager/ViewManager.py" line="3112"/>
         <source>Ctrl+Shift+K</source>
         <comment>Search|Quicksearch</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3096"/>
+        <location filename="../ViewManager/ViewManager.py" line="3120"/>
         <source>Perform a quicksearch</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3098"/>
-        <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
-        <source>Quicksearch backwards</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
-        <source>Quicksearch &amp;backwards</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
-        <source>Ctrl+Shift+J</source>
-        <comment>Search|Quicksearch backwards</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3119"/>
-        <source>Perform a quicksearch backwards</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3122"/>
+        <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <source>Quicksearch backwards</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <source>Quicksearch &amp;backwards</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <source>Ctrl+Shift+J</source>
+        <comment>Search|Quicksearch backwards</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3143"/>
+        <source>Perform a quicksearch backwards</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3146"/>
         <source>&lt;b&gt;Quicksearch backwards&lt;/b&gt;&lt;p&gt;This searches the previous occurrence of the quicksearch text.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Quicksearch extend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Quicksearch e&amp;xtend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Ctrl+Shift+H</source>
         <comment>Search|Quicksearch extend</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3139"/>
+        <location filename="../ViewManager/ViewManager.py" line="3163"/>
         <source>Extend the quicksearch to the end of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3142"/>
+        <location filename="../ViewManager/ViewManager.py" line="3166"/>
         <source>&lt;b&gt;Quicksearch extend&lt;/b&gt;&lt;p&gt;This extends the quicksearch text to the end of the word currently found.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3160"/>
+        <location filename="../ViewManager/ViewManager.py" line="3184"/>
         <source>Goto Line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <location filename="../ViewManager/ViewManager.py" line="3176"/>
         <source>&amp;Goto Line...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <location filename="../ViewManager/ViewManager.py" line="3176"/>
         <source>Ctrl+G</source>
         <comment>Search|Goto Line</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3162"/>
+        <location filename="../ViewManager/ViewManager.py" line="3186"/>
         <source>&lt;b&gt;Goto Line&lt;/b&gt;&lt;p&gt;Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <location filename="../ViewManager/ViewManager.py" line="3203"/>
         <source>Goto Brace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <location filename="../ViewManager/ViewManager.py" line="3195"/>
         <source>Goto &amp;Brace</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <location filename="../ViewManager/ViewManager.py" line="3195"/>
         <source>Ctrl+L</source>
         <comment>Search|Goto Brace</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3181"/>
+        <location filename="../ViewManager/ViewManager.py" line="3205"/>
         <source>&lt;b&gt;Goto Brace&lt;/b&gt;&lt;p&gt;Go to the matching brace in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Search in Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Search in &amp;Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3267"/>
+        <location filename="../ViewManager/ViewManager.py" line="3291"/>
         <source>Search for a text in files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3269"/>
+        <location filename="../ViewManager/ViewManager.py" line="3293"/>
         <source>&lt;b&gt;Search in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Replace in Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Replace in F&amp;iles...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3286"/>
+        <location filename="../ViewManager/ViewManager.py" line="3310"/>
         <source>Search for a text in files and replace it</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3288"/>
+        <location filename="../ViewManager/ViewManager.py" line="3312"/>
         <source>&lt;b&gt;Replace in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3406"/>
+        <location filename="../ViewManager/ViewManager.py" line="3430"/>
         <source>&lt;p&gt;Enter the searchtext directly into this field. The search will be performed case insensitive. The quicksearch function is activated upon activation of the quicksearch next action (default key Ctrl+Shift+K), if this entry field does not have the input focus. Otherwise it searches for the next occurrence of the text entered. The quicksearch backwards action (default key Ctrl+Shift+J) searches backward. Activating the &apos;quicksearch extend&apos; action (default key Ctrl+Shift+H) extends the current searchtext to the end of the currently found word. The quicksearch can be ended by pressing the Return key while the quicksearch entry has the the input focus.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3433"/>
+        <location filename="../ViewManager/ViewManager.py" line="3457"/>
         <source>Quicksearch Textedit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom in</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom &amp;in</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3496"/>
+        <location filename="../ViewManager/ViewManager.py" line="3520"/>
         <source>Zoom in on the text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3498"/>
+        <location filename="../ViewManager/ViewManager.py" line="3522"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom &amp;out</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3515"/>
+        <location filename="../ViewManager/ViewManager.py" line="3539"/>
         <source>Zoom out on the text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3517"/>
+        <location filename="../ViewManager/ViewManager.py" line="3541"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>Zoom</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>&amp;Zoom</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3552"/>
+        <location filename="../ViewManager/ViewManager.py" line="3576"/>
         <source>Zoom the text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3554"/>
+        <location filename="../ViewManager/ViewManager.py" line="3578"/>
         <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3567"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Toggle all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <location filename="../ViewManager/ViewManager.py" line="3587"/>
         <source>&amp;Toggle all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3569"/>
+        <location filename="../ViewManager/ViewManager.py" line="3593"/>
         <source>&lt;b&gt;Toggle all folds&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <location filename="../ViewManager/ViewManager.py" line="3607"/>
         <source>Toggle all folds (including children)</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3577"/>
-        <source>Toggle all &amp;folds (including children)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3585"/>
-        <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3599"/>
-        <source>Toggle current fold</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3595"/>
-        <source>Toggle &amp;current fold</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3601"/>
+        <source>Toggle all &amp;folds (including children)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3609"/>
+        <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3623"/>
+        <source>Toggle current fold</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3619"/>
+        <source>Toggle &amp;current fold</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3625"/>
         <source>&lt;b&gt;Toggle current fold&lt;/b&gt;&lt;p&gt;Toggle the folds of the current line of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3631"/>
+        <location filename="../ViewManager/ViewManager.py" line="3655"/>
         <source>Remove all highlights</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3633"/>
+        <location filename="../ViewManager/ViewManager.py" line="3657"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3703"/>
         <source>Split view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3703"/>
         <source>&amp;Split view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3684"/>
+        <location filename="../ViewManager/ViewManager.py" line="3708"/>
         <source>Add a split to the view</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3686"/>
+        <location filename="../ViewManager/ViewManager.py" line="3710"/>
         <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3694"/>
+        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>Arrange horizontally</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3694"/>
+        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>Arrange &amp;horizontally</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3698"/>
+        <location filename="../ViewManager/ViewManager.py" line="3722"/>
         <source>Arrange the splitted views horizontally</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3700"/>
-        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3709"/>
-        <source>Remove split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3709"/>
-        <source>&amp;Remove split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3714"/>
-        <source>Remove the current split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3716"/>
-        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3724"/>
-        <source>Next split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3724"/>
-        <source>&amp;Next split</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3724"/>
-        <source>Ctrl+Alt+N</source>
-        <comment>View|Next split</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3731"/>
-        <source>Move to the next split</source>
+        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3733"/>
+        <source>Remove split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3733"/>
+        <source>&amp;Remove split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3738"/>
+        <source>Remove the current split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3740"/>
+        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
+        <source>Next split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
+        <source>&amp;Next split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
+        <source>Ctrl+Alt+N</source>
+        <comment>View|Next split</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3755"/>
+        <source>Move to the next split</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3757"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>Previous split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>&amp;Previous split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3747"/>
+        <location filename="../ViewManager/ViewManager.py" line="3771"/>
         <source>Move to the previous split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3749"/>
+        <location filename="../ViewManager/ViewManager.py" line="3773"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3833"/>
+        <location filename="../ViewManager/ViewManager.py" line="3857"/>
         <source>&amp;View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3870"/>
+        <location filename="../ViewManager/ViewManager.py" line="3894"/>
         <source>View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3906"/>
-        <source>Start Macro Recording</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3900"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3908"/>
-        <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
-        <source>Stop Macro Recording</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3916"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3922"/>
-        <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3934"/>
-        <source>Run Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3930"/>
-        <source>&amp;Run Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3936"/>
-        <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3948"/>
-        <source>Delete Macro</source>
+        <source>Start Macro Recording</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3924"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3932"/>
+        <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3944"/>
-        <source>&amp;Delete Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3950"/>
-        <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3962"/>
-        <source>Load Macro</source>
+        <source>Stop Macro Recording</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3940"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3946"/>
+        <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3958"/>
-        <source>&amp;Load Macro</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3964"/>
-        <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3976"/>
-        <source>Save Macro</source>
+        <source>Run Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3954"/>
+        <source>&amp;Run Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3960"/>
+        <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3972"/>
+        <source>Delete Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3968"/>
+        <source>&amp;Delete Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3974"/>
+        <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3986"/>
+        <source>Load Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3982"/>
+        <source>&amp;Load Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3988"/>
+        <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4000"/>
+        <source>Save Macro</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3996"/>
         <source>&amp;Save Macro</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3978"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3994"/>
+        <location filename="../ViewManager/ViewManager.py" line="4018"/>
         <source>&amp;Macros</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4020"/>
+        <location filename="../ViewManager/ViewManager.py" line="4044"/>
         <source>Toggle Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
         <source>&amp;Toggle Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4022"/>
+        <location filename="../ViewManager/ViewManager.py" line="4046"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4039"/>
+        <location filename="../ViewManager/ViewManager.py" line="4063"/>
         <source>Next Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>&amp;Next Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4041"/>
+        <location filename="../ViewManager/ViewManager.py" line="4065"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <location filename="../ViewManager/ViewManager.py" line="4081"/>
         <source>Previous Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <location filename="../ViewManager/ViewManager.py" line="4073"/>
         <source>&amp;Previous Bookmark</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <location filename="../ViewManager/ViewManager.py" line="4073"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4059"/>
+        <location filename="../ViewManager/ViewManager.py" line="4083"/>
         <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4074"/>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <source>Clear Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4091"/>
         <source>&amp;Clear Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4091"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4076"/>
-        <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4090"/>
-        <source>Goto Syntax Error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4084"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4092"/>
-        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4105"/>
-        <source>Clear Syntax Errors</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4100"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4107"/>
-        <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4122"/>
-        <source>Next warning message</source>
+        <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4114"/>
+        <source>Goto Syntax Error</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4108"/>
+        <source>&amp;Goto Syntax Error</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="4116"/>
+        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4129"/>
+        <source>Clear Syntax Errors</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4124"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4131"/>
+        <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4146"/>
+        <source>Next warning message</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4140"/>
         <source>&amp;Next warning message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4141"/>
+        <location filename="../ViewManager/ViewManager.py" line="4165"/>
         <source>Previous warning message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4133"/>
+        <location filename="../ViewManager/ViewManager.py" line="4157"/>
         <source>&amp;Previous warning message</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4159"/>
+        <location filename="../ViewManager/ViewManager.py" line="4183"/>
         <source>Clear Warning Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4152"/>
+        <location filename="../ViewManager/ViewManager.py" line="4176"/>
         <source>Clear &amp;Warning Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4175"/>
+        <location filename="../ViewManager/ViewManager.py" line="4199"/>
         <source>Next uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4169"/>
+        <location filename="../ViewManager/ViewManager.py" line="4193"/>
         <source>&amp;Next uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4177"/>
+        <location filename="../ViewManager/ViewManager.py" line="4201"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4194"/>
+        <location filename="../ViewManager/ViewManager.py" line="4218"/>
         <source>Previous uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4186"/>
+        <location filename="../ViewManager/ViewManager.py" line="4210"/>
         <source>&amp;Previous uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4196"/>
+        <location filename="../ViewManager/ViewManager.py" line="4220"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4236"/>
         <source>Next Task</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4206"/>
+        <location filename="../ViewManager/ViewManager.py" line="4230"/>
         <source>&amp;Next Task</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4214"/>
+        <location filename="../ViewManager/ViewManager.py" line="4238"/>
         <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4229"/>
+        <location filename="../ViewManager/ViewManager.py" line="4253"/>
         <source>Previous Task</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4222"/>
+        <location filename="../ViewManager/ViewManager.py" line="4246"/>
         <source>&amp;Previous Task</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4255"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4285"/>
+        <location filename="../ViewManager/ViewManager.py" line="4309"/>
         <source>&amp;Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4355"/>
         <source>Bookmarks</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4373"/>
+        <location filename="../ViewManager/ViewManager.py" line="4397"/>
         <source>Perform spell check of current editor</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4383"/>
+        <location filename="../ViewManager/ViewManager.py" line="4407"/>
         <source>Automatic spell checking</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4383"/>
+        <location filename="../ViewManager/ViewManager.py" line="4407"/>
         <source>&amp;Automatic spell checking</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4391"/>
+        <location filename="../ViewManager/ViewManager.py" line="4415"/>
         <source>(De-)Activate automatic spell checking</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4393"/>
+        <location filename="../ViewManager/ViewManager.py" line="4417"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4460"/>
+        <location filename="../ViewManager/ViewManager.py" line="4484"/>
         <source>Spelling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4483"/>
+        <location filename="../ViewManager/ViewManager.py" line="4507"/>
         <source>Open files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4527"/>
+        <location filename="../ViewManager/ViewManager.py" line="4551"/>
         <source>File Modified</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4527"/>
+        <location filename="../ViewManager/ViewManager.py" line="4551"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4926"/>
+        <location filename="../ViewManager/ViewManager.py" line="4950"/>
         <source>Line: {0:5}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4932"/>
+        <location filename="../ViewManager/ViewManager.py" line="4956"/>
         <source>Pos: {0:5}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5371"/>
+        <location filename="../ViewManager/ViewManager.py" line="5395"/>
         <source>&amp;Clear</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5365"/>
+        <location filename="../ViewManager/ViewManager.py" line="5389"/>
         <source>&amp;Add</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5368"/>
+        <location filename="../ViewManager/ViewManager.py" line="5392"/>
         <source>&amp;Edit...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3200"/>
+        <location filename="../ViewManager/ViewManager.py" line="3224"/>
         <source>Goto Last Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3213"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3213"/>
         <source>Ctrl+Shift+G</source>
         <comment>Search|Goto Last Edit Location</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3203"/>
+        <location filename="../ViewManager/ViewManager.py" line="3227"/>
         <source>&lt;b&gt;Goto Last Edit Location&lt;/b&gt;&lt;p&gt;Go to the location of the last edit in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3212"/>
-        <source>Goto Previous Method or Class</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3212"/>
-        <source>Ctrl+Shift+Up</source>
-        <comment>Search|Goto Previous Method or Class</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3222"/>
-        <source>Go to the previous method or class definition</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3226"/>
-        <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3236"/>
-        <source>Goto Next Method or Class</source>
+        <source>Goto Previous Method or Class</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3236"/>
-        <source>Ctrl+Shift+Down</source>
-        <comment>Search|Goto Next Method or Class</comment>
+        <source>Ctrl+Shift+Up</source>
+        <comment>Search|Goto Previous Method or Class</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3246"/>
+        <source>Go to the previous method or class definition</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3250"/>
+        <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3260"/>
+        <source>Goto Next Method or Class</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3260"/>
+        <source>Ctrl+Shift+Down</source>
+        <comment>Search|Goto Next Method or Class</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3270"/>
         <source>Go to the next method or class definition</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3248"/>
+        <location filename="../ViewManager/ViewManager.py" line="3272"/>
         <source>&lt;b&gt;Goto Next Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the next method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3757"/>
+        <location filename="../ViewManager/ViewManager.py" line="3781"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3762"/>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <source>Preview the current file in the web browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3764"/>
+        <location filename="../ViewManager/ViewManager.py" line="3788"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1489"/>
+        <location filename="../ViewManager/ViewManager.py" line="1511"/>
         <source>Meta+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1502"/>
+        <location filename="../ViewManager/ViewManager.py" line="1524"/>
         <source>Meta+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1514"/>
+        <location filename="../ViewManager/ViewManager.py" line="1536"/>
         <source>Meta+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1526"/>
+        <location filename="../ViewManager/ViewManager.py" line="1548"/>
         <source>Meta+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1587"/>
+        <location filename="../ViewManager/ViewManager.py" line="1609"/>
         <source>Move to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1603"/>
+        <location filename="../ViewManager/ViewManager.py" line="1625"/>
         <source>Move to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1620"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Move to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1628"/>
+        <location filename="../ViewManager/ViewManager.py" line="1650"/>
         <source>Meta+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1696"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Meta+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1702"/>
+        <location filename="../ViewManager/ViewManager.py" line="1724"/>
         <source>Move to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1719"/>
+        <location filename="../ViewManager/ViewManager.py" line="1741"/>
         <source>Move to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1764"/>
+        <location filename="../ViewManager/ViewManager.py" line="1786"/>
         <source>Meta+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1779"/>
+        <location filename="../ViewManager/ViewManager.py" line="1801"/>
         <source>Meta+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1794"/>
+        <location filename="../ViewManager/ViewManager.py" line="1816"/>
         <source>Meta+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1809"/>
+        <location filename="../ViewManager/ViewManager.py" line="1831"/>
         <source>Meta+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1877"/>
+        <location filename="../ViewManager/ViewManager.py" line="1899"/>
         <source>Extend selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1895"/>
+        <location filename="../ViewManager/ViewManager.py" line="1917"/>
         <source>Extend selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1903"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Meta+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1960"/>
+        <location filename="../ViewManager/ViewManager.py" line="1982"/>
         <source>Meta+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1966"/>
+        <location filename="../ViewManager/ViewManager.py" line="1988"/>
         <source>Extend selection to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1974"/>
+        <location filename="../ViewManager/ViewManager.py" line="1996"/>
         <source>Ctrl+Shift+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1983"/>
+        <location filename="../ViewManager/ViewManager.py" line="2005"/>
         <source>Extend selection to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1991"/>
+        <location filename="../ViewManager/ViewManager.py" line="2013"/>
         <source>Ctrl+Shift+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2009"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Meta+H</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2018"/>
+        <location filename="../ViewManager/ViewManager.py" line="2040"/>
         <source>Delete previous character if not at start of line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2039"/>
+        <location filename="../ViewManager/ViewManager.py" line="2061"/>
         <source>Meta+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2083"/>
+        <location filename="../ViewManager/ViewManager.py" line="2105"/>
         <source>Meta+K</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2192"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <source>Move to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2209"/>
+        <location filename="../ViewManager/ViewManager.py" line="2231"/>
         <source>Extend selection to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2251"/>
+        <location filename="../ViewManager/ViewManager.py" line="2273"/>
         <source>Meta+Alt+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2266"/>
+        <location filename="../ViewManager/ViewManager.py" line="2288"/>
         <source>Meta+Alt+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2284"/>
+        <location filename="../ViewManager/ViewManager.py" line="2306"/>
         <source>Meta+Alt+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2302"/>
+        <location filename="../ViewManager/ViewManager.py" line="2324"/>
         <source>Meta+Alt+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2308"/>
+        <location filename="../ViewManager/ViewManager.py" line="2330"/>
         <source>Extend rectangular selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2327"/>
+        <location filename="../ViewManager/ViewManager.py" line="2349"/>
         <source>Extend rectangular selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2337"/>
+        <location filename="../ViewManager/ViewManager.py" line="2359"/>
         <source>Meta+Alt+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2340"/>
+        <location filename="../ViewManager/ViewManager.py" line="2362"/>
         <source>Alt+Shift+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2361"/>
+        <location filename="../ViewManager/ViewManager.py" line="2383"/>
         <source>Alt+Shift+PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2373"/>
+        <location filename="../ViewManager/ViewManager.py" line="2395"/>
         <source>Meta+Alt+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2393"/>
+        <location filename="../ViewManager/ViewManager.py" line="2415"/>
         <source>Scroll to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2408"/>
+        <location filename="../ViewManager/ViewManager.py" line="2430"/>
         <source>Scroll to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2423"/>
+        <location filename="../ViewManager/ViewManager.py" line="2445"/>
         <source>Scroll vertically to center current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2431"/>
-        <source>Meta+L</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2438"/>
-        <source>Move to end of next word</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2453"/>
+        <source>Meta+L</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2460"/>
+        <source>Move to end of next word</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2475"/>
         <source>Extend selection to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2469"/>
+        <location filename="../ViewManager/ViewManager.py" line="2491"/>
         <source>Move to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2481"/>
+        <location filename="../ViewManager/ViewManager.py" line="2503"/>
         <source>Extend selection to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2493"/>
+        <location filename="../ViewManager/ViewManager.py" line="2515"/>
         <source>Move to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2501"/>
+        <location filename="../ViewManager/ViewManager.py" line="2523"/>
         <source>Meta+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2508"/>
+        <location filename="../ViewManager/ViewManager.py" line="2530"/>
         <source>Extend selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2519"/>
+        <location filename="../ViewManager/ViewManager.py" line="2541"/>
         <source>Meta+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2526"/>
+        <location filename="../ViewManager/ViewManager.py" line="2548"/>
         <source>Extend rectangular selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2536"/>
+        <location filename="../ViewManager/ViewManager.py" line="2558"/>
         <source>Meta+Alt+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2544"/>
+        <location filename="../ViewManager/ViewManager.py" line="2566"/>
         <source>Extend selection to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2563"/>
+        <location filename="../ViewManager/ViewManager.py" line="2585"/>
         <source>Move to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2577"/>
+        <location filename="../ViewManager/ViewManager.py" line="2599"/>
         <source>Extend selection to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2592"/>
+        <location filename="../ViewManager/ViewManager.py" line="2614"/>
         <source>Move to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2609"/>
+        <location filename="../ViewManager/ViewManager.py" line="2631"/>
         <source>Extend selection to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2626"/>
+        <location filename="../ViewManager/ViewManager.py" line="2648"/>
         <source>Move to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2640"/>
+        <location filename="../ViewManager/ViewManager.py" line="2662"/>
         <source>Extend selection to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2655"/>
+        <location filename="../ViewManager/ViewManager.py" line="2677"/>
         <source>Stuttered move up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2667"/>
+        <location filename="../ViewManager/ViewManager.py" line="2689"/>
         <source>Stuttered extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2680"/>
+        <location filename="../ViewManager/ViewManager.py" line="2702"/>
         <source>Stuttered move down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2692"/>
+        <location filename="../ViewManager/ViewManager.py" line="2714"/>
         <source>Stuttered extend selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2705"/>
+        <location filename="../ViewManager/ViewManager.py" line="2727"/>
         <source>Delete right to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2713"/>
+        <location filename="../ViewManager/ViewManager.py" line="2735"/>
         <source>Alt+Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2720"/>
+        <location filename="../ViewManager/ViewManager.py" line="2742"/>
         <source>Move selected lines up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2732"/>
+        <location filename="../ViewManager/ViewManager.py" line="2754"/>
         <source>Move selected lines down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2346"/>
+        <location filename="../ViewManager/ViewManager.py" line="2368"/>
         <source>Alt+Shift+PgUp</source>
         <translation type="unfinished"></translation>
     </message>
@@ -79750,39 +79745,39 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Zoom reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3533"/>
+        <location filename="../ViewManager/ViewManager.py" line="3557"/>
         <source>Reset the zoom of the text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3535"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
@@ -79793,191 +79788,191 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <location filename="../ViewManager/ViewManager.py" line="4270"/>
         <source>Next Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4240"/>
-        <source>&amp;Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4248"/>
-        <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <source>&amp;Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4272"/>
+        <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4288"/>
         <source>Previous Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4257"/>
+        <location filename="../ViewManager/ViewManager.py" line="4281"/>
         <source>&amp;Previous Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4266"/>
+        <location filename="../ViewManager/ViewManager.py" line="4290"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Check spelling</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Check &amp;spelling...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4399"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4424"/>
+        <location filename="../ViewManager/ViewManager.py" line="4448"/>
         <source>Edit Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4426"/>
+        <location filename="../ViewManager/ViewManager.py" line="4450"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4429"/>
+        <location filename="../ViewManager/ViewManager.py" line="4453"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4434"/>
+        <location filename="../ViewManager/ViewManager.py" line="4458"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4437"/>
+        <location filename="../ViewManager/ViewManager.py" line="4461"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6630"/>
+        <location filename="../ViewManager/ViewManager.py" line="6654"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6607"/>
+        <location filename="../ViewManager/ViewManager.py" line="6631"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6589"/>
+        <location filename="../ViewManager/ViewManager.py" line="6613"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6618"/>
+        <location filename="../ViewManager/ViewManager.py" line="6642"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6630"/>
+        <location filename="../ViewManager/ViewManager.py" line="6654"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2955"/>
+        <location filename="../ViewManager/ViewManager.py" line="2979"/>
         <source>Search current word forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2955"/>
+        <location filename="../ViewManager/ViewManager.py" line="2979"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2966"/>
+        <location filename="../ViewManager/ViewManager.py" line="2990"/>
         <source>Search next occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2969"/>
+        <location filename="../ViewManager/ViewManager.py" line="2993"/>
         <source>&lt;b&gt;Search current word forward&lt;/b&gt;&lt;p&gt;Search the next occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2978"/>
+        <location filename="../ViewManager/ViewManager.py" line="3002"/>
         <source>Search current word backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2978"/>
+        <location filename="../ViewManager/ViewManager.py" line="3002"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2989"/>
+        <location filename="../ViewManager/ViewManager.py" line="3013"/>
         <source>Search previous occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2992"/>
+        <location filename="../ViewManager/ViewManager.py" line="3016"/>
         <source>&lt;b&gt;Search current word backward&lt;/b&gt;&lt;p&gt;Search the previous occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Search in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Search in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Meta+Ctrl+Alt+F</source>
         <comment>Search|Search Open Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3310"/>
-        <source>Search for a text in open files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3312"/>
-        <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
-        <source>Replace in Open Files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
-        <source>Meta+Ctrl+Alt+R</source>
-        <comment>Search|Replace in Open Files</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3332"/>
-        <source>Search for a text in open files and replace it</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3334"/>
+        <source>Search for a text in open files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3336"/>
+        <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
+        <source>Replace in Open Files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
+        <source>Meta+Ctrl+Alt+R</source>
+        <comment>Search|Replace in Open Files</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
+        <source>Search for a text in open files and replace it</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3358"/>
         <source>&lt;b&gt;Replace in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
         <source>Replace in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80003,67 +79998,67 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4953"/>
+        <location filename="../ViewManager/ViewManager.py" line="4977"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4960"/>
+        <location filename="../ViewManager/ViewManager.py" line="4984"/>
         <source>EOL Mode: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3641"/>
+        <location filename="../ViewManager/ViewManager.py" line="3665"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3641"/>
-        <source>New &amp;Document View</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3646"/>
-        <source>Open a new view of the current document</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3648"/>
-        <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3658"/>
-        <source>New Document View (with new split)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3665"/>
+        <source>New &amp;Document View</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3670"/>
+        <source>Open a new view of the current document</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3672"/>
+        <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3682"/>
+        <source>New Document View (with new split)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3689"/>
         <source>Open a new view of the current document in a new split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3668"/>
+        <location filename="../ViewManager/ViewManager.py" line="3692"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4124"/>
+        <location filename="../ViewManager/ViewManager.py" line="4148"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4143"/>
+        <location filename="../ViewManager/ViewManager.py" line="4167"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4161"/>
+        <location filename="../ViewManager/ViewManager.py" line="4185"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2776"/>
+        <location filename="../ViewManager/ViewManager.py" line="2798"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80184,65 +80179,65 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3020"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Replace and Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3020"/>
-        <source>Meta+R</source>
-        <comment>Search|Replace and Search</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3030"/>
-        <source>Replace the found text and search the next occurrence</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3033"/>
-        <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3044"/>
-        <source>Replace Occurrence</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3044"/>
-        <source>Ctrl+Meta+R</source>
-        <comment>Search|Replace Occurrence</comment>
+        <source>Meta+R</source>
+        <comment>Search|Replace and Search</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3054"/>
-        <source>Replace the found text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3056"/>
-        <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3066"/>
-        <source>Replace All</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3066"/>
-        <source>Shift+Meta+R</source>
-        <comment>Search|Replace All</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3076"/>
-        <source>Replace search text occurrences</source>
+        <source>Replace the found text and search the next occurrence</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3057"/>
+        <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <source>Replace Occurrence</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <source>Ctrl+Meta+R</source>
+        <comment>Search|Replace Occurrence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3078"/>
+        <source>Replace the found text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3080"/>
+        <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <source>Replace All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <source>Shift+Meta+R</source>
+        <comment>Search|Replace All</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
+        <source>Replace search text occurrences</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3102"/>
         <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80268,57 +80263,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <location filename="../ViewManager/ViewManager.py" line="3638"/>
         <source>Clear all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3610"/>
+        <location filename="../ViewManager/ViewManager.py" line="3634"/>
         <source>Clear &amp;all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3616"/>
+        <location filename="../ViewManager/ViewManager.py" line="3640"/>
         <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Reverse selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Meta+Alt+R</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3774"/>
-        <source>Python AST Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3779"/>
-        <source>Show the AST for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3781"/>
-        <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3791"/>
-        <source>Python Disassembly Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Python AST Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3803"/>
+        <source>Show the AST for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3805"/>
+        <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3815"/>
+        <source>Python Disassembly Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
         <source>Show the Disassembly for the current Python file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3800"/>
+        <location filename="../ViewManager/ViewManager.py" line="3824"/>
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -80337,6 +80332,27 @@
         <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1468"/>
+        <source>Generate Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1468"/>
+        <source>Ctrl+Alt+D</source>
+        <comment>Edit|Generate Docstring</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1475"/>
+        <source>Generate a docstring for the current function/method</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1478"/>
+        <source>&lt;b&gt;Generate Docstring&lt;/b&gt;&lt;p&gt;Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
--- a/eric6/i18n/eric6_es.ts	Fri Jan 22 16:55:43 2021 +0100
+++ b/eric6/i18n/eric6_es.ts	Sat Jan 23 12:02:52 2021 +0100
@@ -11154,17 +11154,17 @@
         <translation>Caja de comentario</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="828"/>
+        <location filename="../QScintilla/Editor.py" line="832"/>
         <source>Select to brace</source>
         <translation>Seleccionar hasta la llave ( &apos;{&apos; o &apos;}&apos; )</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="830"/>
+        <location filename="../QScintilla/Editor.py" line="834"/>
         <source>Select all</source>
         <translation>Seleccionar todo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="831"/>
+        <location filename="../QScintilla/Editor.py" line="835"/>
         <source>Deselect all</source>
         <translation>Deseleccionar todo</translation>
     </message>
@@ -11709,7 +11709,7 @@
         <translation>Corrección ortográfica...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="839"/>
+        <location filename="../QScintilla/Editor.py" line="843"/>
         <source>Check spelling of selection...</source>
         <translation>Corrección ortográfica de la selección...</translation>
     </message>
@@ -11724,7 +11724,7 @@
         <translation>Ignorar Todo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="843"/>
+        <location filename="../QScintilla/Editor.py" line="847"/>
         <source>Remove from dictionary</source>
         <translation>Eliminar del diccionario</translation>
     </message>
@@ -12019,12 +12019,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="849"/>
-        <source>Insert Docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8715"/>
+        <location filename="../QScintilla/Editor.py" line="8726"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
@@ -78861,1427 +78856,1427 @@
         <translation>&lt;b&gt;Convertir lineas vacías&lt;/b&gt;&lt;p&gt;Convierte líneas que contienen solamente espacios a un caracter de salto de línea.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Move left one character</source>
         <translation>Mover a la izquierda un carácter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Left</source>
         <translation>Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1494"/>
+        <location filename="../ViewManager/ViewManager.py" line="1516"/>
         <source>Move right one character</source>
         <translation>Mover a la derecha un carácter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1494"/>
+        <location filename="../ViewManager/ViewManager.py" line="1516"/>
         <source>Right</source>
         <translation>Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1508"/>
+        <location filename="../ViewManager/ViewManager.py" line="1530"/>
         <source>Move up one line</source>
         <translation>Mover arriba una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1508"/>
+        <location filename="../ViewManager/ViewManager.py" line="1530"/>
         <source>Up</source>
         <translation>Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1520"/>
+        <location filename="../ViewManager/ViewManager.py" line="1542"/>
         <source>Move down one line</source>
         <translation>Mover abajo una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1520"/>
+        <location filename="../ViewManager/ViewManager.py" line="1542"/>
         <source>Down</source>
         <translation>Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1532"/>
+        <location filename="../ViewManager/ViewManager.py" line="1554"/>
         <source>Move left one word part</source>
         <translation>Mover a la izquierda una parte de palabra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1566"/>
+        <location filename="../ViewManager/ViewManager.py" line="1588"/>
         <source>Alt+Left</source>
         <translation>Alt+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1546"/>
+        <location filename="../ViewManager/ViewManager.py" line="1568"/>
         <source>Move right one word part</source>
         <translation>Mover a la derecha una parte de palabra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2446"/>
+        <location filename="../ViewManager/ViewManager.py" line="2468"/>
         <source>Alt+Right</source>
         <translation>Alt+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1560"/>
+        <location filename="../ViewManager/ViewManager.py" line="1582"/>
         <source>Move left one word</source>
         <translation>Mover a la izquierda una palabra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1611"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Ctrl+Left</source>
         <translation>Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1575"/>
+        <location filename="../ViewManager/ViewManager.py" line="1597"/>
         <source>Move right one word</source>
         <translation>Mover a la derecha una palabra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2200"/>
+        <location filename="../ViewManager/ViewManager.py" line="2222"/>
         <source>Ctrl+Right</source>
         <translation>Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2401"/>
+        <location filename="../ViewManager/ViewManager.py" line="2423"/>
         <source>Home</source>
         <translation>Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1614"/>
+        <location filename="../ViewManager/ViewManager.py" line="1636"/>
         <source>Alt+Home</source>
         <translation>Alt+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2416"/>
+        <location filename="../ViewManager/ViewManager.py" line="2438"/>
         <source>End</source>
         <translation>End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1637"/>
+        <location filename="../ViewManager/ViewManager.py" line="1659"/>
         <source>Scroll view down one line</source>
         <translation>Scroll hacia abajo una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1749"/>
         <source>Ctrl+Down</source>
         <translation>Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1649"/>
+        <location filename="../ViewManager/ViewManager.py" line="1671"/>
         <source>Scroll view up one line</source>
         <translation>Scroll hacia arriba una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1710"/>
+        <location filename="../ViewManager/ViewManager.py" line="1732"/>
         <source>Ctrl+Up</source>
         <translation>Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1660"/>
+        <location filename="../ViewManager/ViewManager.py" line="1682"/>
         <source>Move up one paragraph</source>
         <translation>Mover arriba un párrafo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1660"/>
+        <location filename="../ViewManager/ViewManager.py" line="1682"/>
         <source>Alt+Up</source>
         <translation>Alt+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1669"/>
+        <location filename="../ViewManager/ViewManager.py" line="1691"/>
         <source>Move down one paragraph</source>
         <translation>Mover abajo un párrafo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1669"/>
+        <location filename="../ViewManager/ViewManager.py" line="1691"/>
         <source>Alt+Down</source>
         <translation>Alt+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1681"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>Move up one page</source>
         <translation>Mover arriba una página</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1681"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>PgUp</source>
         <translation>PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1690"/>
+        <location filename="../ViewManager/ViewManager.py" line="1712"/>
         <source>Move down one page</source>
         <translation>Mover abajo una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1690"/>
+        <location filename="../ViewManager/ViewManager.py" line="1712"/>
         <source>PgDown</source>
         <translation>PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1713"/>
+        <location filename="../ViewManager/ViewManager.py" line="1735"/>
         <source>Ctrl+Home</source>
         <translation>Ctrl+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1730"/>
+        <location filename="../ViewManager/ViewManager.py" line="1752"/>
         <source>Ctrl+End</source>
         <translation>Ctrl+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Indent one level</source>
         <translation>Indentar un nivel</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Tab</source>
         <translation>Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1745"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Unindent one level</source>
         <translation>Desindentar un nivel</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1745"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Shift+Tab</source>
         <translation>Shift+Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1755"/>
+        <location filename="../ViewManager/ViewManager.py" line="1777"/>
         <source>Extend selection left one character</source>
         <translation>Extender selección un carácter a la izquierda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1755"/>
+        <location filename="../ViewManager/ViewManager.py" line="1777"/>
         <source>Shift+Left</source>
         <translation>Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1770"/>
+        <location filename="../ViewManager/ViewManager.py" line="1792"/>
         <source>Extend selection right one character</source>
         <translation>Extender selección un carácter a la derecha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1770"/>
+        <location filename="../ViewManager/ViewManager.py" line="1792"/>
         <source>Shift+Right</source>
         <translation>Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1785"/>
+        <location filename="../ViewManager/ViewManager.py" line="1807"/>
         <source>Extend selection up one line</source>
         <translation>Extender selección hacia arriba una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1785"/>
+        <location filename="../ViewManager/ViewManager.py" line="1807"/>
         <source>Shift+Up</source>
         <translation>Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1800"/>
+        <location filename="../ViewManager/ViewManager.py" line="1822"/>
         <source>Extend selection down one line</source>
         <translation>Extender selección hacia abajo una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1800"/>
+        <location filename="../ViewManager/ViewManager.py" line="1822"/>
         <source>Shift+Down</source>
         <translation>Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1815"/>
+        <location filename="../ViewManager/ViewManager.py" line="1837"/>
         <source>Extend selection left one word part</source>
         <translation>Extender selección a la izquierda una parte de palabra</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="1873"/>
+        <source>Alt+Shift+Left</source>
+        <translation>Alt+Shift+Left</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="1851"/>
-        <source>Alt+Shift+Left</source>
-        <translation>Alt+Shift+Left</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1829"/>
         <source>Extend selection right one word part</source>
         <translation>Extender selección a la derecha una parte de palabra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2461"/>
+        <location filename="../ViewManager/ViewManager.py" line="2483"/>
         <source>Alt+Shift+Right</source>
         <translation>Alt+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1843"/>
+        <location filename="../ViewManager/ViewManager.py" line="1865"/>
         <source>Extend selection left one word</source>
         <translation>Extender selección a la izquierda una palabra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2555"/>
+        <location filename="../ViewManager/ViewManager.py" line="2577"/>
         <source>Ctrl+Shift+Left</source>
         <translation>Ctrl+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1860"/>
+        <location filename="../ViewManager/ViewManager.py" line="1882"/>
         <source>Extend selection right one word</source>
         <translation>Extender selección a la derecha una palabra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2217"/>
+        <location filename="../ViewManager/ViewManager.py" line="2239"/>
         <source>Ctrl+Shift+Right</source>
         <translation>Ctrl+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1889"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Shift+Home</source>
         <translation>Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2321"/>
+        <location filename="../ViewManager/ViewManager.py" line="2343"/>
         <source>Alt+Shift+Home</source>
         <translation>Alt+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1906"/>
+        <location filename="../ViewManager/ViewManager.py" line="1928"/>
         <source>Shift+End</source>
         <translation>Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1912"/>
+        <location filename="../ViewManager/ViewManager.py" line="1934"/>
         <source>Extend selection up one paragraph</source>
         <translation>Extender selección hacia arriba un párrafo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1912"/>
+        <location filename="../ViewManager/ViewManager.py" line="1934"/>
         <source>Alt+Shift+Up</source>
         <translation>Alt+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1925"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Extend selection down one paragraph</source>
         <translation>Extender selección hacia abajo un párrafo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1925"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Alt+Shift+Down</source>
         <translation>Alt+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Extend selection up one page</source>
         <translation>Extender selección arriba una página</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Shift+PgUp</source>
         <translation>Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1950"/>
+        <location filename="../ViewManager/ViewManager.py" line="1972"/>
         <source>Extend selection down one page</source>
         <translation>Extender selección hacia abajo una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1950"/>
+        <location filename="../ViewManager/ViewManager.py" line="1972"/>
         <source>Shift+PgDown</source>
         <translation>Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1977"/>
+        <location filename="../ViewManager/ViewManager.py" line="1999"/>
         <source>Ctrl+Shift+Home</source>
         <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2016"/>
         <source>Ctrl+Shift+End</source>
         <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2000"/>
+        <location filename="../ViewManager/ViewManager.py" line="2022"/>
         <source>Delete previous character</source>
         <translation>Borrar carácter anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2000"/>
+        <location filename="../ViewManager/ViewManager.py" line="2022"/>
         <source>Backspace</source>
         <translation>Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2012"/>
+        <location filename="../ViewManager/ViewManager.py" line="2034"/>
         <source>Shift+Backspace</source>
         <translation>Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2031"/>
+        <location filename="../ViewManager/ViewManager.py" line="2053"/>
         <source>Delete current character</source>
         <translation>Borrar carácter actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2031"/>
+        <location filename="../ViewManager/ViewManager.py" line="2053"/>
         <source>Del</source>
         <translation>Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2045"/>
+        <location filename="../ViewManager/ViewManager.py" line="2067"/>
         <source>Delete word to left</source>
         <translation>Borrar palabra a la izquierda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2045"/>
+        <location filename="../ViewManager/ViewManager.py" line="2067"/>
         <source>Ctrl+Backspace</source>
         <translation>Ctrl+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2056"/>
+        <location filename="../ViewManager/ViewManager.py" line="2078"/>
         <source>Delete word to right</source>
         <translation>Borrar palabra a la derecha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2056"/>
+        <location filename="../ViewManager/ViewManager.py" line="2078"/>
         <source>Ctrl+Del</source>
         <translation>Ctrl+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2066"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Delete line to left</source>
         <translation>Borrar línea a la izquierda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2066"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation>Ctrl+Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2077"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Delete line to right</source>
         <translation>Borrar línea a la derecha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2086"/>
+        <location filename="../ViewManager/ViewManager.py" line="2108"/>
         <source>Ctrl+Shift+Del</source>
         <translation>Ctrl+Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Insert new line</source>
         <translation>Insertar nueva línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Return</source>
         <translation>Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Enter</source>
         <translation>Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2115"/>
-        <source>Delete current line</source>
-        <translation>Borrar línea actual</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2115"/>
-        <source>Ctrl+Shift+L</source>
-        <translation>Ctrl+Shift+L</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2126"/>
-        <source>Duplicate current line</source>
-        <translation>Duplicar línea actual</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2126"/>
-        <source>Ctrl+D</source>
-        <translation>Ctrl+D</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2137"/>
-        <source>Swap current and previous lines</source>
-        <translation>Intercambiar línea actual con la anterior</translation>
+        <source>Delete current line</source>
+        <translation>Borrar línea actual</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="2137"/>
+        <source>Ctrl+Shift+L</source>
+        <translation>Ctrl+Shift+L</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <source>Duplicate current line</source>
+        <translation>Duplicar línea actual</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <source>Ctrl+D</source>
+        <translation>Ctrl+D</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2159"/>
+        <source>Swap current and previous lines</source>
+        <translation>Intercambiar línea actual con la anterior</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2159"/>
         <source>Ctrl+T</source>
         <translation>Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2160"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Cut current line</source>
         <translation>Cortar línea actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2160"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Alt+Shift+L</source>
         <translation>Alt+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2170"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Copy current line</source>
         <translation>Copiar línea actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2170"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Ctrl+Shift+T</source>
         <translation>Ctrl+Shift+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
+        <location filename="../ViewManager/ViewManager.py" line="2203"/>
         <source>Toggle insert/overtype</source>
         <translation>Alternar insertar/sobreescribir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
-        <source>Ins</source>
-        <translation>Ins</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2745"/>
-        <source>Convert selection to lower case</source>
-        <translation>Convertir selección a minúsculas</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2745"/>
-        <source>Alt+Shift+U</source>
-        <translation>Alt+Shift+U</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2757"/>
-        <source>Convert selection to upper case</source>
-        <translation>Convertir selección a mayúsculas</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2757"/>
-        <source>Ctrl+Shift+U</source>
-        <translation>Ctrl+Shift+U</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2203"/>
+        <source>Ins</source>
+        <translation>Ins</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2767"/>
+        <source>Convert selection to lower case</source>
+        <translation>Convertir selección a minúsculas</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2767"/>
+        <source>Alt+Shift+U</source>
+        <translation>Alt+Shift+U</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2779"/>
+        <source>Convert selection to upper case</source>
+        <translation>Convertir selección a mayúsculas</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2779"/>
+        <source>Ctrl+Shift+U</source>
+        <translation>Ctrl+Shift+U</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2225"/>
         <source>Alt+End</source>
         <translation>Alt+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2223"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <source>Formfeed</source>
         <translation>Formfeed</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2232"/>
+        <location filename="../ViewManager/ViewManager.py" line="2254"/>
         <source>Escape</source>
         <translation>Escape</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2232"/>
+        <location filename="../ViewManager/ViewManager.py" line="2254"/>
         <source>Esc</source>
         <translation>Esc</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2241"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Extend rectangular selection down one line</source>
         <translation>Extender selección rectangular hacia abajo una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2241"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Alt+Ctrl+Down</source>
         <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2257"/>
+        <location filename="../ViewManager/ViewManager.py" line="2279"/>
         <source>Extend rectangular selection up one line</source>
         <translation>Extender selección rectangular hacia arriba una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2257"/>
+        <location filename="../ViewManager/ViewManager.py" line="2279"/>
         <source>Alt+Ctrl+Up</source>
         <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2272"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Extend rectangular selection left one character</source>
         <translation>Extender selección rectangular a la izquierda un carácter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2272"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Alt+Ctrl+Left</source>
         <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2290"/>
+        <location filename="../ViewManager/ViewManager.py" line="2312"/>
         <source>Extend rectangular selection right one character</source>
         <translation>Extender selección rectangular a la derecha un carácter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2290"/>
+        <location filename="../ViewManager/ViewManager.py" line="2312"/>
         <source>Alt+Ctrl+Right</source>
         <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2346"/>
+        <location filename="../ViewManager/ViewManager.py" line="2368"/>
         <source>Extend rectangular selection up one page</source>
         <translation>Extender selección rectangular hacia arriba una página</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2361"/>
+        <location filename="../ViewManager/ViewManager.py" line="2383"/>
         <source>Extend rectangular selection down one page</source>
         <translation>Extender selección rectangular hacia abajo una página</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2379"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Duplicate current selection</source>
         <translation>Duplicar selección actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2379"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Ctrl+Shift+D</source>
         <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3352"/>
+        <location filename="../ViewManager/ViewManager.py" line="3376"/>
         <source>&amp;Search</source>
         <translation>&amp;Buscar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2786"/>
+        <location filename="../ViewManager/ViewManager.py" line="2808"/>
         <source>&amp;Edit</source>
         <translation>&amp;Editar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2843"/>
+        <location filename="../ViewManager/ViewManager.py" line="2867"/>
         <source>Edit</source>
         <translation>Editar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3447"/>
+        <location filename="../ViewManager/ViewManager.py" line="3471"/>
         <source>Search</source>
         <translation>Buscar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2875"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>&amp;Search...</source>
         <translation>&amp;Buscar...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2875"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation>Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2883"/>
+        <location filename="../ViewManager/ViewManager.py" line="2907"/>
         <source>Search for a text</source>
         <translation>Buscar un texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2885"/>
+        <location filename="../ViewManager/ViewManager.py" line="2909"/>
         <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Buscar&lt;/b&gt;&lt;p&gt;Buscar texto en el editor. En el diálogo muestra opciones e indica el texto de búsqueda.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Search next</source>
         <translation>Buscar siguiente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Search &amp;next</source>
         <translation>Buscar &amp;Siguiente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation>F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Search previous</source>
         <translation>Buscar anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Search &amp;previous</source>
         <translation>Buscar a&amp;nterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation>Shift+F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>Replace</source>
         <translation>Reemplazar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>&amp;Replace...</source>
         <translation>&amp;Reemplazar...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation>Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3008"/>
+        <location filename="../ViewManager/ViewManager.py" line="3032"/>
         <source>Replace some text</source>
         <translation>Reemplazar un texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3010"/>
+        <location filename="../ViewManager/ViewManager.py" line="3034"/>
         <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Reemplazar&lt;/b&gt;&lt;p&gt;Buscar un texto en el editor actual y reemplazarlo. Se muestra un diálogo para introducir el texto de búsqueda, el texto de reemplazo y las opciones para buscar y reemplazar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3387"/>
+        <location filename="../ViewManager/ViewManager.py" line="3411"/>
         <source>Quicksearch</source>
         <translation>Búsqueda rápida</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3088"/>
+        <location filename="../ViewManager/ViewManager.py" line="3112"/>
         <source>&amp;Quicksearch</source>
         <translation>Búsqueda &amp;rápida</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3088"/>
+        <location filename="../ViewManager/ViewManager.py" line="3112"/>
         <source>Ctrl+Shift+K</source>
         <comment>Search|Quicksearch</comment>
         <translation>Ctrl+Shift+K</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3096"/>
+        <location filename="../ViewManager/ViewManager.py" line="3120"/>
         <source>Perform a quicksearch</source>
         <translation>Llevar a cabo búsqueda rápida</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <source>Quicksearch backwards</source>
         <translation>Búsqueda rápida hacia atras</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <source>Quicksearch &amp;backwards</source>
         <translation>Búsqueda rápida hacia &amp;atras</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <source>Ctrl+Shift+J</source>
         <comment>Search|Quicksearch backwards</comment>
         <translation>Ctrl+Shift+J</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3119"/>
+        <location filename="../ViewManager/ViewManager.py" line="3143"/>
         <source>Perform a quicksearch backwards</source>
         <translation>Llevar a cabo búsqueda rápida hacia atrás</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Quicksearch extend</source>
         <translation>Extender Búsqueda Rápida</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Quicksearch e&amp;xtend</source>
         <translation>E&amp;xtender Búsqueda Rápida</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Ctrl+Shift+H</source>
         <comment>Search|Quicksearch extend</comment>
         <translation>Ctrl+Shift+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3139"/>
+        <location filename="../ViewManager/ViewManager.py" line="3163"/>
         <source>Extend the quicksearch to the end of the current word</source>
         <translation>Extender la búsqueda rápida al final de la palabra actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3142"/>
+        <location filename="../ViewManager/ViewManager.py" line="3166"/>
         <source>&lt;b&gt;Quicksearch extend&lt;/b&gt;&lt;p&gt;This extends the quicksearch text to the end of the word currently found.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Extender búsqueda rápida&lt;/b&gt;&lt;p&gt;Extiende la búsqueda rápida al final de la palabra actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3160"/>
+        <location filename="../ViewManager/ViewManager.py" line="3184"/>
         <source>Goto Line</source>
         <translation>Ir a línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <location filename="../ViewManager/ViewManager.py" line="3176"/>
         <source>&amp;Goto Line...</source>
         <translation>&amp;Ir a Linea...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <location filename="../ViewManager/ViewManager.py" line="3176"/>
         <source>Ctrl+G</source>
         <comment>Search|Goto Line</comment>
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3162"/>
+        <location filename="../ViewManager/ViewManager.py" line="3186"/>
         <source>&lt;b&gt;Goto Line&lt;/b&gt;&lt;p&gt;Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ir la la línea&lt;/b&gt;&lt;p&gt;Ir a una línea específica del texto en el editor actual. Se muestra un diálogo para introducir el número de línea.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <location filename="../ViewManager/ViewManager.py" line="3203"/>
         <source>Goto Brace</source>
         <translation>Ir a paréntesis</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <location filename="../ViewManager/ViewManager.py" line="3195"/>
         <source>Goto &amp;Brace</source>
         <translation>Ir al Parén&amp;tesis</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <location filename="../ViewManager/ViewManager.py" line="3195"/>
         <source>Ctrl+L</source>
         <comment>Search|Goto Brace</comment>
         <translation>Ctrl+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3181"/>
+        <location filename="../ViewManager/ViewManager.py" line="3205"/>
         <source>&lt;b&gt;Goto Brace&lt;/b&gt;&lt;p&gt;Go to the matching brace in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ir a llave (&apos;{&apos; o &apos;}&apos;)&lt;/b&gt;&lt;p&gt;Ir a la llave correspondiente en el editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Search in Files</source>
         <translation>Buscar en archivos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Search in &amp;Files...</source>
         <translation>Buscar en arc&amp;hivos...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation>Shift+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3267"/>
+        <location filename="../ViewManager/ViewManager.py" line="3291"/>
         <source>Search for a text in files</source>
         <translation>Buscar texto en archivos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3269"/>
+        <location filename="../ViewManager/ViewManager.py" line="3293"/>
         <source>&lt;b&gt;Search in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Buscar en Archivos&lt;/b&gt;&lt;p&gt;Buscar un texto en los archivos de un árbol de directorios o en el proyecto. Se muestra un diálogo para introducir el texto de búsqueda y opciones para búsqueda y visualización del resultado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom in</source>
         <translation>Aumentar zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom &amp;in</source>
         <translation>A&amp;umentar Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3496"/>
+        <location filename="../ViewManager/ViewManager.py" line="3520"/>
         <source>Zoom in on the text</source>
         <translation>Zoom sobre el texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3498"/>
+        <location filename="../ViewManager/ViewManager.py" line="3522"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aumentar zoom&lt;/b&gt;&lt;p&gt;Aumentar zoom sobre el texto. Hace que el texto sea de mayor tamaño.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom out</source>
         <translation>Disminuir Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom &amp;out</source>
         <translation>Dismi&amp;nuir Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3515"/>
+        <location filename="../ViewManager/ViewManager.py" line="3539"/>
         <source>Zoom out on the text</source>
         <translation>Disminuir zoom en el texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3517"/>
+        <location filename="../ViewManager/ViewManager.py" line="3541"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Disminuir zoom&lt;/b&gt;&lt;p&gt;Disminuir zoom sobre el texto. Hace que el texto sea de menor tamaño.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>Zoom</source>
         <translation>Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>&amp;Zoom</source>
         <translation>&amp;Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation>Ctrl+#</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3552"/>
+        <location filename="../ViewManager/ViewManager.py" line="3576"/>
         <source>Zoom the text</source>
         <translation>Zoom sobre el texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3554"/>
+        <location filename="../ViewManager/ViewManager.py" line="3578"/>
         <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom sobre el texto. Abre un diálogo donde se puede introducir el tamaño deseado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3567"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Toggle all folds</source>
         <translation>Recoger/Desplegar los anidamientos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <location filename="../ViewManager/ViewManager.py" line="3587"/>
         <source>&amp;Toggle all folds</source>
         <translation>Recoger/Desplegar los &amp;anidamientos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3569"/>
+        <location filename="../ViewManager/ViewManager.py" line="3593"/>
         <source>&lt;b&gt;Toggle all folds&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Recoger/desplegar todos los anidamientos&lt;/b&gt;&lt;p&gt;Recoge/despliega todos los anidamientos en el editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <location filename="../ViewManager/ViewManager.py" line="3607"/>
         <source>Toggle all folds (including children)</source>
         <translation>Recoger/Desplegar todos los anidamientos (inc. hijos)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3577"/>
-        <source>Toggle all &amp;folds (including children)</source>
-        <translation>Recoger/Desplegar todos los a&amp;nidamientos (inc. hijos)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3585"/>
-        <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Recoger/desplegar todos los anidamientos (incluyendo hijos)&lt;/b&gt;&lt;p&gt;Recoge/despliega todos los anidamientos en el editor actual, incluyendo todos los hijos.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3599"/>
-        <source>Toggle current fold</source>
-        <translation>Recoger/Desplegar el anidamiento actual</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3595"/>
-        <source>Toggle &amp;current fold</source>
-        <translation>Recoger/Desplega&amp;r el anidamiento actual</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3601"/>
+        <source>Toggle all &amp;folds (including children)</source>
+        <translation>Recoger/Desplegar todos los a&amp;nidamientos (inc. hijos)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3609"/>
+        <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Recoger/desplegar todos los anidamientos (incluyendo hijos)&lt;/b&gt;&lt;p&gt;Recoge/despliega todos los anidamientos en el editor actual, incluyendo todos los hijos.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3623"/>
+        <source>Toggle current fold</source>
+        <translation>Recoger/Desplegar el anidamiento actual</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3619"/>
+        <source>Toggle &amp;current fold</source>
+        <translation>Recoger/Desplega&amp;r el anidamiento actual</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3625"/>
         <source>&lt;b&gt;Toggle current fold&lt;/b&gt;&lt;p&gt;Toggle the folds of the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Recoger/desplegar anidamiento actual&lt;/b&gt;&lt;p&gt;Recoge/despliega el anidamiento de la línea actual en el editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3631"/>
+        <location filename="../ViewManager/ViewManager.py" line="3655"/>
         <source>Remove all highlights</source>
         <translation>Quitar todos los resaltes</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3633"/>
+        <location filename="../ViewManager/ViewManager.py" line="3657"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Eliminar todos los resaltes de texto&lt;/b&gt;&lt;p&gt;Elimina todos los resaltes de texto en todos los editories.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3703"/>
         <source>Split view</source>
         <translation>Dividir vista</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3703"/>
         <source>&amp;Split view</source>
         <translation>&amp;Dividir vista</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3684"/>
+        <location filename="../ViewManager/ViewManager.py" line="3708"/>
         <source>Add a split to the view</source>
         <translation>Agregar una división a la vista</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3686"/>
+        <location filename="../ViewManager/ViewManager.py" line="3710"/>
         <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Dividir vista&lt;/b&gt;&lt;p&gt;Añade una nueva división a la vista.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3694"/>
+        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>Arrange horizontally</source>
         <translation>Organizar horizontalmente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3694"/>
+        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>Arrange &amp;horizontally</source>
         <translation>Or&amp;ganizar horizontalmente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3698"/>
+        <location filename="../ViewManager/ViewManager.py" line="3722"/>
         <source>Arrange the splitted views horizontally</source>
         <translation>Organizar las vistas divididas horizontalmente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3700"/>
-        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Organizar horizontalmente&lt;/b&gt;&lt;p&gt;Organiza las vistas divididas horizontalmente.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3709"/>
-        <source>Remove split</source>
-        <translation>Quitar división</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3709"/>
-        <source>&amp;Remove split</source>
-        <translation>&amp;Quitar división</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3714"/>
-        <source>Remove the current split</source>
-        <translation>Eliminar división actual</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3716"/>
-        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Eliminar división&lt;/b&gt;&lt;p&gt;Elimina la división actual.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3724"/>
+        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Organizar horizontalmente&lt;/b&gt;&lt;p&gt;Organiza las vistas divididas horizontalmente.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3733"/>
+        <source>Remove split</source>
+        <translation>Quitar división</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3733"/>
+        <source>&amp;Remove split</source>
+        <translation>&amp;Quitar división</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3738"/>
+        <source>Remove the current split</source>
+        <translation>Eliminar división actual</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3740"/>
+        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Eliminar división&lt;/b&gt;&lt;p&gt;Elimina la división actual.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
         <source>Next split</source>
         <translation>Próxima división</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3724"/>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
         <source>&amp;Next split</source>
         <translation>Pró&amp;xima división</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3724"/>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation>Ctrl+Alt+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3731"/>
+        <location filename="../ViewManager/ViewManager.py" line="3755"/>
         <source>Move to the next split</source>
         <translation>Mover a la siguiente división</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3733"/>
+        <location filename="../ViewManager/ViewManager.py" line="3757"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Siguiente división&lt;/b&gt;&lt;p&gt;Mover a la siguiente división.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>Previous split</source>
         <translation>División anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>&amp;Previous split</source>
         <translation>Divi&amp;sión anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation>Ctrl+Alt+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3747"/>
+        <location filename="../ViewManager/ViewManager.py" line="3771"/>
         <source>Move to the previous split</source>
         <translation>Mover a la división anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3749"/>
+        <location filename="../ViewManager/ViewManager.py" line="3773"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;División anterior&lt;/b&gt;&lt;p&gt;Mover a la división anterior.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3833"/>
+        <location filename="../ViewManager/ViewManager.py" line="3857"/>
         <source>&amp;View</source>
         <translation>&amp;Ver</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3870"/>
+        <location filename="../ViewManager/ViewManager.py" line="3894"/>
         <source>View</source>
         <translation>Ver</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3906"/>
-        <source>Start Macro Recording</source>
-        <translation>Comenzar grabación de macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3900"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation>Comenzar &amp;grabación de macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3908"/>
-        <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Comenzar Grabación de Macro&lt;/b&gt;&lt;p&gt;Comenzar grabación de comandos de editor como una nueva macro.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
-        <source>Stop Macro Recording</source>
-        <translation>Detener Grabación de Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3916"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation>Detene&amp;r grabación de macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3922"/>
-        <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Detener Grabación de Macro&lt;/b&gt;&lt;p&gt;Detener grabación de comandos de editor a una nueva macro.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3934"/>
-        <source>Run Macro</source>
-        <translation>Ejecutar macro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3930"/>
-        <source>&amp;Run Macro</source>
-        <translation>Ejecuta&amp;r macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3936"/>
-        <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Ejecutar Macro&lt;/b&gt;&lt;p&gt;Ejecutar una macro de editor grabada anteriormente.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3948"/>
-        <source>Delete Macro</source>
-        <translation>Borrar macro</translation>
+        <source>Start Macro Recording</source>
+        <translation>Comenzar grabación de macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3924"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation>Comenzar &amp;grabación de macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3932"/>
+        <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Comenzar Grabación de Macro&lt;/b&gt;&lt;p&gt;Comenzar grabación de comandos de editor como una nueva macro.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3944"/>
-        <source>&amp;Delete Macro</source>
-        <translation>&amp;Borrar macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3950"/>
-        <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Eliminar Macro&lt;/b&gt;&lt;p&gt;Eliminar una macro de editor grabada anteriormente.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3962"/>
-        <source>Load Macro</source>
-        <translation>Cargar macro</translation>
+        <source>Stop Macro Recording</source>
+        <translation>Detener Grabación de Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3940"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation>Detene&amp;r grabación de macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3946"/>
+        <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Detener Grabación de Macro&lt;/b&gt;&lt;p&gt;Detener grabación de comandos de editor a una nueva macro.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3958"/>
-        <source>&amp;Load Macro</source>
-        <translation>&amp;Cargar macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3964"/>
-        <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Cargar Macro&lt;/b&gt;&lt;p&gt;Cargar desde archivo una macro de editor grabada anteriormente.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3976"/>
-        <source>Save Macro</source>
-        <translation>Guardar macro</translation>
+        <source>Run Macro</source>
+        <translation>Ejecutar macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3954"/>
+        <source>&amp;Run Macro</source>
+        <translation>Ejecuta&amp;r macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3960"/>
+        <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Ejecutar Macro&lt;/b&gt;&lt;p&gt;Ejecutar una macro de editor grabada anteriormente.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3972"/>
+        <source>Delete Macro</source>
+        <translation>Borrar macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3968"/>
+        <source>&amp;Delete Macro</source>
+        <translation>&amp;Borrar macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3974"/>
+        <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Eliminar Macro&lt;/b&gt;&lt;p&gt;Eliminar una macro de editor grabada anteriormente.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3986"/>
+        <source>Load Macro</source>
+        <translation>Cargar macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3982"/>
+        <source>&amp;Load Macro</source>
+        <translation>&amp;Cargar macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3988"/>
+        <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Cargar Macro&lt;/b&gt;&lt;p&gt;Cargar desde archivo una macro de editor grabada anteriormente.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4000"/>
+        <source>Save Macro</source>
+        <translation>Guardar macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3996"/>
         <source>&amp;Save Macro</source>
         <translation>&amp;Guardar macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3978"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Guardar Macro&lt;/b&gt;&lt;p&gt;Guarda en un archivo una macro de editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3994"/>
+        <location filename="../ViewManager/ViewManager.py" line="4018"/>
         <source>&amp;Macros</source>
         <translation>&amp;Macros</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4020"/>
+        <location filename="../ViewManager/ViewManager.py" line="4044"/>
         <source>Toggle Bookmark</source>
         <translation>Alternar Marcador</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
         <source>&amp;Toggle Bookmark</source>
         <translation>Al&amp;ternar marcador</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation>Alt+Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4022"/>
+        <location filename="../ViewManager/ViewManager.py" line="4046"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Alternar Marcador&lt;/b&gt;&lt;p&gt;Alterna un marcador en la línea actual del editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4039"/>
+        <location filename="../ViewManager/ViewManager.py" line="4063"/>
         <source>Next Bookmark</source>
         <translation>Siguiente marcador</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>&amp;Next Bookmark</source>
         <translation>Siguie&amp;nte marcador</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation>Ctrl+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4041"/>
+        <location filename="../ViewManager/ViewManager.py" line="4065"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Siguiente Marcador&lt;/b&gt;&lt;p&gt;Avanzar al siguiente marcador del editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <location filename="../ViewManager/ViewManager.py" line="4081"/>
         <source>Previous Bookmark</source>
         <translation>Marcador anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <location filename="../ViewManager/ViewManager.py" line="4073"/>
         <source>&amp;Previous Bookmark</source>
         <translation>Marcador an&amp;terior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <location filename="../ViewManager/ViewManager.py" line="4073"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation>Ctrl+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4059"/>
+        <location filename="../ViewManager/ViewManager.py" line="4083"/>
         <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Anterior Marcador&lt;/b&gt;&lt;p&gt;Retroceder al anterior marcador del editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4074"/>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <source>Clear Bookmarks</source>
         <translation>Borrar todos los marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4091"/>
         <source>&amp;Clear Bookmarks</source>
         <translation>Borrar todos los mar&amp;cadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4091"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation>Alt+Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4076"/>
-        <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Borrar todos los marcadores&lt;/b&gt;&lt;p&gt;Borra todos los marcadores de todos los editores.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4090"/>
-        <source>Goto Syntax Error</source>
-        <translation>Ir al error de sintaxis</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4084"/>
-        <source>&amp;Goto Syntax Error</source>
-        <translation>&amp;Ir al error de sintaxis</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4092"/>
-        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Ir al Error de Sintaxis&lt;/b&gt;&lt;p&gt;Ir al siguiente error de sintaxis del editor actual.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4105"/>
-        <source>Clear Syntax Errors</source>
-        <translation>Borrar Errores de Sintaxis</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4100"/>
+        <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Borrar todos los marcadores&lt;/b&gt;&lt;p&gt;Borra todos los marcadores de todos los editores.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4114"/>
+        <source>Goto Syntax Error</source>
+        <translation>Ir al error de sintaxis</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4108"/>
+        <source>&amp;Goto Syntax Error</source>
+        <translation>&amp;Ir al error de sintaxis</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4116"/>
+        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Ir al Error de Sintaxis&lt;/b&gt;&lt;p&gt;Ir al siguiente error de sintaxis del editor actual.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4129"/>
+        <source>Clear Syntax Errors</source>
+        <translation>Borrar Errores de Sintaxis</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4124"/>
         <source>Clear &amp;Syntax Errors</source>
         <translation>Borrar Errores de &amp;Sintaxis</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4107"/>
+        <location filename="../ViewManager/ViewManager.py" line="4131"/>
         <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Borrar Errores de Sintaxis&lt;/b&gt;&lt;p&gt;Borra los errores de sintaxis de todos los editores.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4175"/>
+        <location filename="../ViewManager/ViewManager.py" line="4199"/>
         <source>Next uncovered line</source>
         <translation>Siguiente línea sin cobertura</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4169"/>
+        <location filename="../ViewManager/ViewManager.py" line="4193"/>
         <source>&amp;Next uncovered line</source>
         <translation>Siguie&amp;nte línea sin cobertura</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4177"/>
+        <location filename="../ViewManager/ViewManager.py" line="4201"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Siguiente línea sin cobertura&lt;/b&gt;&lt;p&gt;Ir a la siguiente línea del editor actual marcada como sin cobertura.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4194"/>
+        <location filename="../ViewManager/ViewManager.py" line="4218"/>
         <source>Previous uncovered line</source>
         <translation>Anterior línea sin cobertura</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4186"/>
+        <location filename="../ViewManager/ViewManager.py" line="4210"/>
         <source>&amp;Previous uncovered line</source>
         <translation>Anteri&amp;or línea sin cobertura</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4196"/>
+        <location filename="../ViewManager/ViewManager.py" line="4220"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Anterior línea sin cobertura&lt;/b&gt;&lt;p&gt;Ir a la anterior línea del editor actual marcada como sin cobertura.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4236"/>
         <source>Next Task</source>
         <translation>Siguiente Tarea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4206"/>
+        <location filename="../ViewManager/ViewManager.py" line="4230"/>
         <source>&amp;Next Task</source>
         <translation>Siguie&amp;nte Tarea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4214"/>
+        <location filename="../ViewManager/ViewManager.py" line="4238"/>
         <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Siguiente Tarea&lt;/b&gt;&lt;p&gt;Ir a la siguiente línea en el editor actual que tiene una tarea.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4229"/>
+        <location filename="../ViewManager/ViewManager.py" line="4253"/>
         <source>Previous Task</source>
         <translation>Tarea anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4222"/>
+        <location filename="../ViewManager/ViewManager.py" line="4246"/>
         <source>&amp;Previous Task</source>
         <translation>Tarea anteri&amp;or</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4255"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tarea Anterior&lt;/b&gt;&lt;p&gt;Ir a la línea anterior en el editor actual que tiene una tarea.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4285"/>
+        <location filename="../ViewManager/ViewManager.py" line="4309"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4355"/>
         <source>Bookmarks</source>
         <translation>Marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4483"/>
+        <location filename="../ViewManager/ViewManager.py" line="4507"/>
         <source>Open files</source>
         <translation>Abrir Archivos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4527"/>
+        <location filename="../ViewManager/ViewManager.py" line="4551"/>
         <source>File Modified</source>
         <translation>Archivo Modificado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5371"/>
+        <location filename="../ViewManager/ViewManager.py" line="5395"/>
         <source>&amp;Clear</source>
         <translation>&amp;Limpiar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5365"/>
+        <location filename="../ViewManager/ViewManager.py" line="5389"/>
         <source>&amp;Add</source>
         <translation>&amp;Agregar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5368"/>
+        <location filename="../ViewManager/ViewManager.py" line="5392"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Editar...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3433"/>
+        <location filename="../ViewManager/ViewManager.py" line="3457"/>
         <source>Quicksearch Textedit</source>
         <translation>Editor de texto de Búsqueda Rápida</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2936"/>
+        <location filename="../ViewManager/ViewManager.py" line="2960"/>
         <source>Clear search markers</source>
         <translation>Limpiar marcadores de búsqueda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2936"/>
+        <location filename="../ViewManager/ViewManager.py" line="2960"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation>Ctrl+3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2944"/>
+        <location filename="../ViewManager/ViewManager.py" line="2968"/>
         <source>Clear all displayed search markers</source>
         <translation>Limpiar todos los marcadores de texto mostrados</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2946"/>
+        <location filename="../ViewManager/ViewManager.py" line="2970"/>
         <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Limpiar marcadores de búsqueda&lt;/b&gt;&lt;p&gt;Limpiar todos los marcadores de búsqueda mostrados.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2904"/>
+        <location filename="../ViewManager/ViewManager.py" line="2928"/>
         <source>Search next occurrence of text</source>
         <translation>Buscar siguiente ocurrencia del texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2906"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Buscar siguiente&lt;/b&gt;&lt;p&gt;Buscar la siguiente ocurrencia de un texto en el editor actual. Se reutilizan el texto de búsqueda introducido anteriormente y sus opciones.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2924"/>
+        <location filename="../ViewManager/ViewManager.py" line="2948"/>
         <source>Search previous occurrence of text</source>
         <translation>Buscar anterior ocurrencia del texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2926"/>
+        <location filename="../ViewManager/ViewManager.py" line="2950"/>
         <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Buscar anterior&lt;/b&gt;&lt;p&gt;Buscar la anterior ocurrencia de un texto en el editor actual. Se reutilizan el texto de búsqueda introducido anteriormente y sus opciones.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3098"/>
-        <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Búsqueda Rápida&lt;/b&gt;&lt;p&gt;Activa la función de busqueda rápida de la IDE, dando el foco al campo de entrada de búsqueda rápida. Si este campo ya está activo y contiene texto, busca la siguiente ocurerncia de este texto.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3122"/>
+        <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Búsqueda Rápida&lt;/b&gt;&lt;p&gt;Activa la función de busqueda rápida de la IDE, dando el foco al campo de entrada de búsqueda rápida. Si este campo ya está activo y contiene texto, busca la siguiente ocurerncia de este texto.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3146"/>
         <source>&lt;b&gt;Quicksearch backwards&lt;/b&gt;&lt;p&gt;This searches the previous occurrence of the quicksearch text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Búsqueda rápida hacia atras&lt;/b&gt;&lt;p&gt;Busca la ocurrencia anterior del texto de búsqueda rapida.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3406"/>
+        <location filename="../ViewManager/ViewManager.py" line="3430"/>
         <source>&lt;p&gt;Enter the searchtext directly into this field. The search will be performed case insensitive. The quicksearch function is activated upon activation of the quicksearch next action (default key Ctrl+Shift+K), if this entry field does not have the input focus. Otherwise it searches for the next occurrence of the text entered. The quicksearch backwards action (default key Ctrl+Shift+J) searches backward. Activating the &apos;quicksearch extend&apos; action (default key Ctrl+Shift+H) extends the current searchtext to the end of the currently found word. The quicksearch can be ended by pressing the Return key while the quicksearch entry has the the input focus.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Introduzca el texto de búsqueda directamente en este campo. La búsqueda se llevará a cabo sin tener en cuenta mayúsculas/minúsculas. La búsqueda rápida se activa a partir de la acción de siguiente búsqueda rapida (tecla por defecto Ctrl+Shift+K), si este campo de entrada no tiene el foco de input. En cualquier otro caso, busca la siguiente ocurrencia del texto introducido. La acción de búsqueda rápida hacia atrás (tecla por defecto Ctrl+Shift+J) busca hacia atrás. Activando la opción &apos;extender búsqueda rápida&apos; (tecla por defecto Ctrl+Shift+H) extiende la busqueda de texto actual hasta el final de la palabra actual. La búsqueda rápida se puede finalizar pulsando la tecla de retorno mientras la entrada de búsqueda rápida  tiene el foco de input.&lt;/p&gt;</translation>
     </message>
@@ -80321,124 +80316,124 @@
         <translation>&lt;b&gt;Presentación Preliminar&lt;/b&gt;&lt;p&gt;Presentación preliminar de la ventana del editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Insert new line below current line</source>
         <translation>Insertar nueva línea debajo de la línea actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Shift+Return</source>
         <translation>Shift+Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Shift+Enter</source>
         <translation>Shift+Entrar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Replace in Files</source>
         <translation>Reemplazar en Archivos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Replace in F&amp;iles...</source>
         <translation>Reemplazar en Arch&amp;ivos...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation>Shift+Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3286"/>
+        <location filename="../ViewManager/ViewManager.py" line="3310"/>
         <source>Search for a text in files and replace it</source>
         <translation>Buscar un texto en archivos y reemplazarlo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3288"/>
+        <location filename="../ViewManager/ViewManager.py" line="3312"/>
         <source>&lt;b&gt;Replace in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Reemplazar en Archivos&lt;/b&gt;&lt;p&gt;Buscar un texto en los archivos de un árbol de directorios o en el proyecto y reemplazarlo. Se muestra un diálogo para introducir el texto de búsqueda, el texto de reemplazo y opciones para búsqueda y visualización del resultado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4373"/>
+        <location filename="../ViewManager/ViewManager.py" line="4397"/>
         <source>Perform spell check of current editor</source>
         <translation>Lleva a cabo la corrección ortográfica del editor actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4383"/>
+        <location filename="../ViewManager/ViewManager.py" line="4407"/>
         <source>Automatic spell checking</source>
         <translation>Corrección ortográfica automática</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4383"/>
+        <location filename="../ViewManager/ViewManager.py" line="4407"/>
         <source>&amp;Automatic spell checking</source>
         <translation>Corrección ortográfica &amp;automática</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4391"/>
+        <location filename="../ViewManager/ViewManager.py" line="4415"/>
         <source>(De-)Activate automatic spell checking</source>
         <translation>(Des-)Activar la corrección ortográfica automática</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4393"/>
+        <location filename="../ViewManager/ViewManager.py" line="4417"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Corrección ortografica automática&lt;/b&gt;&lt;p&gt;Activar o desactivar la corrección ortográfica automática en todos los editores.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4460"/>
+        <location filename="../ViewManager/ViewManager.py" line="4484"/>
         <source>Spelling</source>
         <translation>Corrección ortográfica</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4527"/>
+        <location filename="../ViewManager/ViewManager.py" line="4551"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo &lt;b&gt;{0}&lt;/b&gt; tiene cambios sin guardar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4926"/>
+        <location filename="../ViewManager/ViewManager.py" line="4950"/>
         <source>Line: {0:5}</source>
         <translation>Línea: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4932"/>
+        <location filename="../ViewManager/ViewManager.py" line="4956"/>
         <source>Pos: {0:5}</source>
         <translation>Pos: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4122"/>
+        <location filename="../ViewManager/ViewManager.py" line="4146"/>
         <source>Next warning message</source>
         <translation>Siguiente mensaje de advertencia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4116"/>
+        <location filename="../ViewManager/ViewManager.py" line="4140"/>
         <source>&amp;Next warning message</source>
         <translation>Siguie&amp;nte mensaje de advertencia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4141"/>
+        <location filename="../ViewManager/ViewManager.py" line="4165"/>
         <source>Previous warning message</source>
         <translation>Mensaje de advertencia anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4133"/>
+        <location filename="../ViewManager/ViewManager.py" line="4157"/>
         <source>&amp;Previous warning message</source>
         <translation>&amp;Mensaje de advertencia anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4159"/>
+        <location filename="../ViewManager/ViewManager.py" line="4183"/>
         <source>Clear Warning Messages</source>
         <translation>Limpiar Mensajes de Advertencia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4152"/>
+        <location filename="../ViewManager/ViewManager.py" line="4176"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>&amp;Limpiar Mensajes de Advertencia</translation>
     </message>
@@ -80459,425 +80454,425 @@
         <translation>&lt;b&gt;Unir Lineas&lt;/b&gt;&lt;p&gt;Unir las líneas actual y siguiente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3200"/>
+        <location filename="../ViewManager/ViewManager.py" line="3224"/>
         <source>Goto Last Edit Location</source>
         <translation>Ir a la Última Posición de Edición</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3213"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation>Ir a la Última Posición de &amp;Edición</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3213"/>
         <source>Ctrl+Shift+G</source>
         <comment>Search|Goto Last Edit Location</comment>
         <translation>Ctrl+Shift+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3203"/>
+        <location filename="../ViewManager/ViewManager.py" line="3227"/>
         <source>&lt;b&gt;Goto Last Edit Location&lt;/b&gt;&lt;p&gt;Go to the location of the last edit in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ir a la Última Posición de Edición&lt;/b&gt;&lt;p&gt;Ir a la posición de la última edición en el editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3212"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Goto Previous Method or Class</source>
         <translation>Ir al Anterior Método o Clase</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3212"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Ctrl+Shift+Up</source>
         <comment>Search|Goto Previous Method or Class</comment>
         <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3222"/>
-        <source>Go to the previous method or class definition</source>
-        <translation>Ir a la anterior definición de método o clase</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3226"/>
-        <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Ir al Anterior Método o Clase&lt;/b&gt;&lt;p&gt;Va a la línea de la anterior definición de método o clase y resalta el nombre.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3236"/>
-        <source>Goto Next Method or Class</source>
-        <translation>Ir al Siguiente Método o Clase</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3236"/>
-        <source>Ctrl+Shift+Down</source>
-        <comment>Search|Goto Next Method or Class</comment>
-        <translation>Ctrl+Shift+Down</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3246"/>
+        <source>Go to the previous method or class definition</source>
+        <translation>Ir a la anterior definición de método o clase</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3250"/>
+        <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Ir al Anterior Método o Clase&lt;/b&gt;&lt;p&gt;Va a la línea de la anterior definición de método o clase y resalta el nombre.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3260"/>
+        <source>Goto Next Method or Class</source>
+        <translation>Ir al Siguiente Método o Clase</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3260"/>
+        <source>Ctrl+Shift+Down</source>
+        <comment>Search|Goto Next Method or Class</comment>
+        <translation>Ctrl+Shift+Down</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3270"/>
         <source>Go to the next method or class definition</source>
         <translation>Ir a la siguiente definición de método o clase</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3248"/>
+        <location filename="../ViewManager/ViewManager.py" line="3272"/>
         <source>&lt;b&gt;Goto Next Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the next method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ir al Siguiente Método o Clase&lt;/b&gt;&lt;p&gt;Va a la línea de la siguiente definición de método o clase y resalta el nombre.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3757"/>
+        <location filename="../ViewManager/ViewManager.py" line="3781"/>
         <source>Preview</source>
         <translation>Vista Previa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3762"/>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <source>Preview the current file in the web browser</source>
         <translation>Vista previa del archivo actual en el navegador web</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3764"/>
+        <location filename="../ViewManager/ViewManager.py" line="3788"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vista Previa&lt;/b&gt;&lt;p&gt;Abre el navegador web con una vista previa del archivo actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1489"/>
+        <location filename="../ViewManager/ViewManager.py" line="1511"/>
         <source>Meta+B</source>
         <translation>Meta+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1502"/>
+        <location filename="../ViewManager/ViewManager.py" line="1524"/>
         <source>Meta+F</source>
         <translation>Meta+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1514"/>
+        <location filename="../ViewManager/ViewManager.py" line="1536"/>
         <source>Meta+P</source>
         <translation>Meta+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1526"/>
+        <location filename="../ViewManager/ViewManager.py" line="1548"/>
         <source>Meta+N</source>
         <translation>Meta+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1587"/>
+        <location filename="../ViewManager/ViewManager.py" line="1609"/>
         <source>Move to first visible character in document line</source>
         <translation>Mover al primer carácter visible en la línea de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1603"/>
+        <location filename="../ViewManager/ViewManager.py" line="1625"/>
         <source>Move to start of display line</source>
         <translation>Mover al principio de la línea mostrada</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1620"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Move to end of document line</source>
         <translation>Mover al final de la línea de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1628"/>
+        <location filename="../ViewManager/ViewManager.py" line="1650"/>
         <source>Meta+E</source>
         <translation>Meta+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1696"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Meta+V</source>
         <translation>Meta+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1702"/>
+        <location filename="../ViewManager/ViewManager.py" line="1724"/>
         <source>Move to start of document</source>
         <translation>Mover al principio del documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1719"/>
+        <location filename="../ViewManager/ViewManager.py" line="1741"/>
         <source>Move to end of document</source>
         <translation>Mover al final del documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1764"/>
+        <location filename="../ViewManager/ViewManager.py" line="1786"/>
         <source>Meta+Shift+B</source>
         <translation>Meta+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1779"/>
+        <location filename="../ViewManager/ViewManager.py" line="1801"/>
         <source>Meta+Shift+F</source>
         <translation>Meta+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1794"/>
+        <location filename="../ViewManager/ViewManager.py" line="1816"/>
         <source>Meta+Shift+P</source>
         <translation>Meta+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1809"/>
+        <location filename="../ViewManager/ViewManager.py" line="1831"/>
         <source>Meta+Shift+N</source>
         <translation>Meta+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1877"/>
+        <location filename="../ViewManager/ViewManager.py" line="1899"/>
         <source>Extend selection to first visible character in document line</source>
         <translation>Extender selección al primer carácter visible en la línea de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1895"/>
+        <location filename="../ViewManager/ViewManager.py" line="1917"/>
         <source>Extend selection to end of document line</source>
         <translation>Extender selección hasta el final de la línea de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1903"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Meta+Shift+E</source>
         <translation>Meta+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1960"/>
+        <location filename="../ViewManager/ViewManager.py" line="1982"/>
         <source>Meta+Shift+V</source>
         <translation>Meta+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1966"/>
+        <location filename="../ViewManager/ViewManager.py" line="1988"/>
         <source>Extend selection to start of document</source>
         <translation>Extender selección al principio del documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1974"/>
+        <location filename="../ViewManager/ViewManager.py" line="1996"/>
         <source>Ctrl+Shift+Up</source>
         <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1983"/>
+        <location filename="../ViewManager/ViewManager.py" line="2005"/>
         <source>Extend selection to end of document</source>
         <translation>Extender selección al final del documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1991"/>
+        <location filename="../ViewManager/ViewManager.py" line="2013"/>
         <source>Ctrl+Shift+Down</source>
         <translation>Ctrl+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2009"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Meta+H</source>
         <translation>Meta+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2018"/>
+        <location filename="../ViewManager/ViewManager.py" line="2040"/>
         <source>Delete previous character if not at start of line</source>
         <translation>Borrar carácter anterior si no se está al principio de la línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2039"/>
+        <location filename="../ViewManager/ViewManager.py" line="2061"/>
         <source>Meta+D</source>
         <translation>Meta+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2083"/>
+        <location filename="../ViewManager/ViewManager.py" line="2105"/>
         <source>Meta+K</source>
         <translation>Meta+K</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2192"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <source>Move to end of display line</source>
         <translation>Mover al final de la línea mostrada</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2209"/>
+        <location filename="../ViewManager/ViewManager.py" line="2231"/>
         <source>Extend selection to end of display line</source>
         <translation>Extender selección hasta el final de la línea mostrada</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2251"/>
+        <location filename="../ViewManager/ViewManager.py" line="2273"/>
         <source>Meta+Alt+Shift+N</source>
         <translation>Meta+Alt+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2266"/>
+        <location filename="../ViewManager/ViewManager.py" line="2288"/>
         <source>Meta+Alt+Shift+P</source>
         <translation>Meta+Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2284"/>
+        <location filename="../ViewManager/ViewManager.py" line="2306"/>
         <source>Meta+Alt+Shift+B</source>
         <translation>Meta+Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2302"/>
+        <location filename="../ViewManager/ViewManager.py" line="2324"/>
         <source>Meta+Alt+Shift+F</source>
         <translation>Meta+Alt+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2308"/>
+        <location filename="../ViewManager/ViewManager.py" line="2330"/>
         <source>Extend rectangular selection to first visible character in document line</source>
         <translation>Extender selección rectangular al primer carácter visible en la línea de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2327"/>
+        <location filename="../ViewManager/ViewManager.py" line="2349"/>
         <source>Extend rectangular selection to end of document line</source>
         <translation>Extender selección rectangular hasta el final de la línea de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2337"/>
+        <location filename="../ViewManager/ViewManager.py" line="2359"/>
         <source>Meta+Alt+Shift+E</source>
         <translation>Meta+Alt+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2340"/>
+        <location filename="../ViewManager/ViewManager.py" line="2362"/>
         <source>Alt+Shift+End</source>
         <translation>Alt+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2361"/>
+        <location filename="../ViewManager/ViewManager.py" line="2383"/>
         <source>Alt+Shift+PgDown</source>
         <translation>Alt+Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2373"/>
+        <location filename="../ViewManager/ViewManager.py" line="2395"/>
         <source>Meta+Alt+Shift+V</source>
         <translation>Meta+Alt+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2393"/>
+        <location filename="../ViewManager/ViewManager.py" line="2415"/>
         <source>Scroll to start of document</source>
         <translation>Desplazamiento hasta el principio del documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2408"/>
+        <location filename="../ViewManager/ViewManager.py" line="2430"/>
         <source>Scroll to end of document</source>
         <translation>Desplazamiento hasta el final del documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2423"/>
+        <location filename="../ViewManager/ViewManager.py" line="2445"/>
         <source>Scroll vertically to center current line</source>
         <translation>Desplazamiento vertical para centrar la línea actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2431"/>
-        <source>Meta+L</source>
-        <translation>Meta+L</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2438"/>
-        <source>Move to end of next word</source>
-        <translation>Mover al final de la palabra siguiente</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2453"/>
+        <source>Meta+L</source>
+        <translation>Meta+L</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2460"/>
+        <source>Move to end of next word</source>
+        <translation>Mover al final de la palabra siguiente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2475"/>
         <source>Extend selection to end of next word</source>
         <translation>Extender selección al final de la siguiente palabra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2469"/>
+        <location filename="../ViewManager/ViewManager.py" line="2491"/>
         <source>Move to end of previous word</source>
         <translation>Mover al final de la palabra anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2481"/>
+        <location filename="../ViewManager/ViewManager.py" line="2503"/>
         <source>Extend selection to end of previous word</source>
         <translation>Extender selección al final de la palabra anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2493"/>
+        <location filename="../ViewManager/ViewManager.py" line="2515"/>
         <source>Move to start of document line</source>
         <translation>Mover al principio de la línea de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2501"/>
+        <location filename="../ViewManager/ViewManager.py" line="2523"/>
         <source>Meta+A</source>
         <translation>Meta+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2508"/>
+        <location filename="../ViewManager/ViewManager.py" line="2530"/>
         <source>Extend selection to start of document line</source>
         <translation>Extender selección hasta el inicio de la línea documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2519"/>
+        <location filename="../ViewManager/ViewManager.py" line="2541"/>
         <source>Meta+Shift+A</source>
         <translation>/media/110106_1117</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2526"/>
+        <location filename="../ViewManager/ViewManager.py" line="2548"/>
         <source>Extend rectangular selection to start of document line</source>
         <translation>Extender selección rectangular hasta el principio de la línea de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2536"/>
+        <location filename="../ViewManager/ViewManager.py" line="2558"/>
         <source>Meta+Alt+Shift+A</source>
         <translation>Meta+Alt+Shift+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2544"/>
+        <location filename="../ViewManager/ViewManager.py" line="2566"/>
         <source>Extend selection to start of display line</source>
         <translation>Extender selección hasta el principio de la línea mostrada</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2563"/>
+        <location filename="../ViewManager/ViewManager.py" line="2585"/>
         <source>Move to start of display or document line</source>
         <translation>Mover al principio de línea mostrada o de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2577"/>
+        <location filename="../ViewManager/ViewManager.py" line="2599"/>
         <source>Extend selection to start of display or document line</source>
         <translation>Extender selección hasta el inicio de la línea mostrada o de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2592"/>
+        <location filename="../ViewManager/ViewManager.py" line="2614"/>
         <source>Move to first visible character in display or document line</source>
         <translation>Mover al primer carácter visible en la línea mostrada o de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2609"/>
+        <location filename="../ViewManager/ViewManager.py" line="2631"/>
         <source>Extend selection to first visible character in display or document line</source>
         <translation>Extender selección al primer carácter visible en la línea mostrada o de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2626"/>
+        <location filename="../ViewManager/ViewManager.py" line="2648"/>
         <source>Move to end of display or document line</source>
         <translation>Mover al final de la línea mostrada o de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2640"/>
+        <location filename="../ViewManager/ViewManager.py" line="2662"/>
         <source>Extend selection to end of display or document line</source>
         <translation>Extender selección al final de la línea mostrada o de documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2655"/>
+        <location filename="../ViewManager/ViewManager.py" line="2677"/>
         <source>Stuttered move up one page</source>
         <translation>Mover progresivamente hacia arriba una página</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2667"/>
+        <location filename="../ViewManager/ViewManager.py" line="2689"/>
         <source>Stuttered extend selection up one page</source>
         <translation>Extender progresivamente la selección arriba una página</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2680"/>
+        <location filename="../ViewManager/ViewManager.py" line="2702"/>
         <source>Stuttered move down one page</source>
         <translation>Mover progresivamente hacia abajo una página</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2692"/>
+        <location filename="../ViewManager/ViewManager.py" line="2714"/>
         <source>Stuttered extend selection down one page</source>
         <translation>Extender progresivamente la selección abajo una página</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2705"/>
+        <location filename="../ViewManager/ViewManager.py" line="2727"/>
         <source>Delete right to end of next word</source>
         <translation>Borrar a la derecha hasta el final de la siguiente palabra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2713"/>
+        <location filename="../ViewManager/ViewManager.py" line="2735"/>
         <source>Alt+Del</source>
         <translation>Alt+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2720"/>
+        <location filename="../ViewManager/ViewManager.py" line="2742"/>
         <source>Move selected lines up one line</source>
         <translation>Mover las líneas seleccionadas arriba una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2732"/>
+        <location filename="../ViewManager/ViewManager.py" line="2754"/>
         <source>Move selected lines down one line</source>
         <translation>Mover las líneas seleccionadas abajo una línea</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2346"/>
+        <location filename="../ViewManager/ViewManager.py" line="2368"/>
         <source>Alt+Shift+PgUp</source>
         <translation>Alt+Shift+PgUp</translation>
     </message>
@@ -80903,39 +80898,39 @@
         <translation>&lt;b&gt;Alternar Comentario&lt;/b&gt;&lt;p&gt;Si la línea actual no empieza con un bloque de comentario, la línea actual o la selección se comenta. Si ya está comentada, este bloque de comentario se descomenta.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Zoom reset</source>
         <translation>Restablecer zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Zoom &amp;reset</source>
         <translation>&amp;Restablecer zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3533"/>
+        <location filename="../ViewManager/ViewManager.py" line="3557"/>
         <source>Reset the zoom of the text</source>
         <translation>Restablecer el zoom aplicado al texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3535"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Restablecer zoom&lt;/b&gt;&lt;p&gt;Restablece el zoom aplicado al texto. Establece el factor de zoom a 100%.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation>Aumentar Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation>Disminuir Zoom</translation>
@@ -80946,191 +80941,191 @@
         <translation>Guardar a&amp;ll</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <location filename="../ViewManager/ViewManager.py" line="4270"/>
         <source>Next Change</source>
         <translation>Siguiente Cambio</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4240"/>
-        <source>&amp;Next Change</source>
-        <translation>Siguie&amp;nte Cambio</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4248"/>
-        <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Siguiente Cambio&lt;/b&gt;&lt;p&gt;Ir a la siguiente línea del editor actual que tiene un marcador de cambios.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <source>&amp;Next Change</source>
+        <translation>Siguie&amp;nte Cambio</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4272"/>
+        <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Siguiente Cambio&lt;/b&gt;&lt;p&gt;Ir a la siguiente línea del editor actual que tiene un marcador de cambios.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4288"/>
         <source>Previous Change</source>
         <translation>Cambio Anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4257"/>
+        <location filename="../ViewManager/ViewManager.py" line="4281"/>
         <source>&amp;Previous Change</source>
         <translation>Cambio &amp;Anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4266"/>
+        <location filename="../ViewManager/ViewManager.py" line="4290"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cambio Anterior&lt;/b&gt;&lt;p&gt;Ir a la anterior línea del editor actual que tiene un marcador de cambios.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Check spelling</source>
         <translation>Corrección ortográfica</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Check &amp;spelling...</source>
         <translation>Corrección &amp;ortográfica...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4399"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Corrección ortográfica&lt;/b&gt;&lt;p&gt;Lleva a cabo la corrección ortográfica del editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4424"/>
+        <location filename="../ViewManager/ViewManager.py" line="4448"/>
         <source>Edit Dictionary</source>
         <translation>Editar Diccionario</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4426"/>
+        <location filename="../ViewManager/ViewManager.py" line="4450"/>
         <source>Project Word List</source>
         <translation>Lista de Palabras del Proyecto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4429"/>
+        <location filename="../ViewManager/ViewManager.py" line="4453"/>
         <source>Project Exception List</source>
         <translation>Lista de Excepciones del Proyecto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4434"/>
+        <location filename="../ViewManager/ViewManager.py" line="4458"/>
         <source>User Word List</source>
         <translation>Lista de Palabras del Usuario</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4437"/>
+        <location filename="../ViewManager/ViewManager.py" line="4461"/>
         <source>User Exception List</source>
         <translation>Lista de Excepciones del Usuario</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6630"/>
+        <location filename="../ViewManager/ViewManager.py" line="6654"/>
         <source>Edit Spelling Dictionary</source>
         <translation>Editar Diccionario Ortográfico</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6607"/>
+        <location filename="../ViewManager/ViewManager.py" line="6631"/>
         <source>Editing {0}</source>
         <translation>Editando {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6589"/>
+        <location filename="../ViewManager/ViewManager.py" line="6613"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de diccionario ortográfico &lt;b&gt;{0}&lt;/b&gt; no se puede leer.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6618"/>
+        <location filename="../ViewManager/ViewManager.py" line="6642"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;El archivo de diccionario ortográfico &lt;b&gt;{0}&lt;/b&gt; no se puede escribir.&lt;/p&gt;&lt;p&gt;Razón: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6630"/>
+        <location filename="../ViewManager/ViewManager.py" line="6654"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation>El diccionario ortográfico se ha guardado con éxito.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2955"/>
+        <location filename="../ViewManager/ViewManager.py" line="2979"/>
         <source>Search current word forward</source>
         <translation>Buscar palabra actual hacia adelante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2955"/>
+        <location filename="../ViewManager/ViewManager.py" line="2979"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation>Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2966"/>
+        <location filename="../ViewManager/ViewManager.py" line="2990"/>
         <source>Search next occurrence of the current word</source>
         <translation>Buscar siguiente ocurrencia de la palabra actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2969"/>
+        <location filename="../ViewManager/ViewManager.py" line="2993"/>
         <source>&lt;b&gt;Search current word forward&lt;/b&gt;&lt;p&gt;Search the next occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Buscar palabra actual hacia adelante&lt;/b&gt;&lt;p&gt;Buscar la siguiente ocurrencia de la palabra actual en el editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2978"/>
+        <location filename="../ViewManager/ViewManager.py" line="3002"/>
         <source>Search current word backward</source>
         <translation>Buscar palabra actual hacia atrás</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2978"/>
+        <location filename="../ViewManager/ViewManager.py" line="3002"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation>Ctrl+,</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2989"/>
+        <location filename="../ViewManager/ViewManager.py" line="3013"/>
         <source>Search previous occurrence of the current word</source>
         <translation>Buscar ocurrencia anterior de la palabra actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2992"/>
+        <location filename="../ViewManager/ViewManager.py" line="3016"/>
         <source>&lt;b&gt;Search current word backward&lt;/b&gt;&lt;p&gt;Search the previous occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Buscar palabra actual hacia atrás&lt;/b&gt;&lt;p&gt;Buscar la ocurrencia anterior de la palabra actual en el editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Search in Open Files</source>
         <translation>Buscar en los Archivos Abiertos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Search in Open Files...</source>
         <translation>Buscar en los Archivos Abiertos...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Meta+Ctrl+Alt+F</source>
         <comment>Search|Search Open Files</comment>
         <translation>Meta+Ctrl+Alt+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3310"/>
+        <location filename="../ViewManager/ViewManager.py" line="3334"/>
         <source>Search for a text in open files</source>
         <translation>Buscar un texto en los archivos abiertos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3312"/>
+        <location filename="../ViewManager/ViewManager.py" line="3336"/>
         <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Buscar en los Archivos Abiertos&lt;/b&gt;&lt;p&gt;Buscar un texto en los archivos actualmente abiertos. Se muestra un diálogo para introducir el texto de búsqueda y opciones de búsqueda, y para mostrar el resultado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
         <source>Replace in Open Files</source>
         <translation>Reemplazar en los Archivos Abiertos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
         <source>Meta+Ctrl+Alt+R</source>
         <comment>Search|Replace in Open Files</comment>
         <translation>Meta+Ctrl+Alt+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3332"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Search for a text in open files and replace it</source>
         <translation>Buscar un texto en los archivos abiertos y reemplazarlo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3334"/>
+        <location filename="../ViewManager/ViewManager.py" line="3358"/>
         <source>&lt;b&gt;Replace in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Reemplazar en los Archivos Abiertos&lt;/b&gt;&lt;p&gt;Buscar un texto en los archivos actualmente abiertos y reemplazarlo. Se muestra un diálogo para introducir el texto de búsqueda, el texto de reemplazo y opciones para la búsqueda y visualización del resultado.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
         <source>Replace in Open Files...</source>
         <translation>Reemplazar en los Archivos Abiertos...</translation>
     </message>
@@ -81156,67 +81151,67 @@
         <translation>&lt;b&gt;Ordenar&lt;/b&gt;&lt;p&gt;Ordenar las líneas contenidas en una selección rectangular basada en la selección, ignorando espacios en blanco delante y detrás.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4953"/>
+        <location filename="../ViewManager/ViewManager.py" line="4977"/>
         <source>Language: {0}</source>
         <translation>Lenguaje: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4960"/>
+        <location filename="../ViewManager/ViewManager.py" line="4984"/>
         <source>EOL Mode: {0}</source>
         <translation>Modo de EOL: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3641"/>
+        <location filename="../ViewManager/ViewManager.py" line="3665"/>
         <source>New Document View</source>
         <translation>Nueva Vista de Documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3641"/>
-        <source>New &amp;Document View</source>
-        <translation>Nueva Vista de &amp;Documento</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3646"/>
-        <source>Open a new view of the current document</source>
-        <translation>Abrir una nueva vista del documento actual</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3648"/>
-        <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Nueva Vista de Documento&lt;/b&gt;&lt;p&gt;Abre una nueva vista del documento actual. Ambas vistas muestran el mismo documento. Sin embargo, los cursores pueden estar ubicados de manera independiente.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3658"/>
-        <source>New Document View (with new split)</source>
-        <translation>Nueva Vista de Documento (con nueva división)</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3665"/>
+        <source>New &amp;Document View</source>
+        <translation>Nueva Vista de &amp;Documento</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3670"/>
+        <source>Open a new view of the current document</source>
+        <translation>Abrir una nueva vista del documento actual</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3672"/>
+        <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Nueva Vista de Documento&lt;/b&gt;&lt;p&gt;Abre una nueva vista del documento actual. Ambas vistas muestran el mismo documento. Sin embargo, los cursores pueden estar ubicados de manera independiente.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3682"/>
+        <source>New Document View (with new split)</source>
+        <translation>Nueva Vista de Documento (con nueva división)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3689"/>
         <source>Open a new view of the current document in a new split</source>
         <translation>Abrir una nueva vista del documento actual en una nueva división</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3668"/>
+        <location filename="../ViewManager/ViewManager.py" line="3692"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nueva Vista de Documento&lt;/b&gt;&lt;p&gt;Abre una nueva vista del documento actual en una nueva división. Ambas vistas muestran el mismo documento. Sin embargo, los cursores pueden estar ubicados de manera independiente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4124"/>
+        <location filename="../ViewManager/ViewManager.py" line="4148"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Siguiente mensaje de advertencia&lt;/b&gt;&lt;p&gt;Ir a la siguiente línea en el editor actual que contenga una advertencia de pyflakes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4143"/>
+        <location filename="../ViewManager/ViewManager.py" line="4167"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Anterior mensaje de advertencia&lt;/b&gt;&lt;p&gt;Ir a la anterior línea en el editor actual que contenga una advertencia de pyflakes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4161"/>
+        <location filename="../ViewManager/ViewManager.py" line="4185"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Limpiar Mensajes de Advertencia&lt;/b&gt;&lt;p&gt;Limpiar mensajes de advertencia de pyflakes en todos los editores.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2776"/>
+        <location filename="../ViewManager/ViewManager.py" line="2798"/>
         <source>Complete</source>
         <translation>Completar</translation>
     </message>
@@ -81337,65 +81332,65 @@
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3020"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Replace and Search</source>
         <translation>Buscar y Reemplazar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3020"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Meta+R</source>
         <comment>Search|Replace and Search</comment>
         <translation>Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3030"/>
+        <location filename="../ViewManager/ViewManager.py" line="3054"/>
         <source>Replace the found text and search the next occurrence</source>
         <translation>Reemplazar el texto encontrado y buscar siguiente ocurrencia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3033"/>
+        <location filename="../ViewManager/ViewManager.py" line="3057"/>
         <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Buscar y Reemplazar&lt;/b&gt;&lt;p&gt;Reemplazar la ocurrencia de texto en editor actual y buscar la siguiente. Se reusan el texto y las opciones de búsqueda introducidas previamente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3044"/>
+        <location filename="../ViewManager/ViewManager.py" line="3068"/>
         <source>Replace Occurrence</source>
         <translation>Reemplazar Ocurrencia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3044"/>
+        <location filename="../ViewManager/ViewManager.py" line="3068"/>
         <source>Ctrl+Meta+R</source>
         <comment>Search|Replace Occurrence</comment>
         <translation>Ctrl+Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3054"/>
+        <location filename="../ViewManager/ViewManager.py" line="3078"/>
         <source>Replace the found text</source>
         <translation>Reemplazar el texto encontrado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3056"/>
+        <location filename="../ViewManager/ViewManager.py" line="3080"/>
         <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Reemplazar Ocurrencia&lt;/b&gt;&lt;p&gt;Reemplazar la ocurrencia del texto de búsqueda hallado en el editor actual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3066"/>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
         <source>Replace All</source>
         <translation>Reemplazar Todo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3066"/>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
         <source>Shift+Meta+R</source>
         <comment>Search|Replace All</comment>
         <translation>Shift+Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3076"/>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <source>Replace search text occurrences</source>
         <translation>Reemplazar ocurrencias de texto de búsqueda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3078"/>
+        <location filename="../ViewManager/ViewManager.py" line="3102"/>
         <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Reemplazar Todo&lt;/b&gt;&lt;p&gt;Reemplazar todas las ocurrencias del texto de búsqueda en el editor actual.&lt;/p&gt;</translation>
     </message>
@@ -81421,57 +81416,57 @@
         <translation>&lt;b&gt;Info del Código&lt;/b&gt;&lt;p&gt;Mostrar información del código basado en la posición del cursor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <location filename="../ViewManager/ViewManager.py" line="3638"/>
         <source>Clear all folds</source>
         <translation>Limpiar todos los anidamientos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3610"/>
+        <location filename="../ViewManager/ViewManager.py" line="3634"/>
         <source>Clear &amp;all folds</source>
         <translation>Limpiar todos los anid&amp;amientos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3616"/>
+        <location filename="../ViewManager/ViewManager.py" line="3640"/>
         <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Limpiar todos los anidamientos&lt;/b&gt;&lt;p&gt;Limpiar todos los anidamientos en el editor actual, asegurando que todas las líneas se muestran sin plegar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Reverse selected lines</source>
         <translation>Revertir líneas seleccionadas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Meta+Alt+R</source>
         <translation>Meta+Alt+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3774"/>
-        <source>Python AST Viewer</source>
-        <translation>Visor AST de Python</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3779"/>
-        <source>Show the AST for the current Python file</source>
-        <translation>Mostrar el AST para el archivo de Python actual</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3781"/>
-        <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Visor AST de Python&lt;/b&gt;&lt;p&gt;Abre una vista de árbol del AST del archivo actual de código fuente Python.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3791"/>
-        <source>Python Disassembly Viewer</source>
-        <translation>Visor de Desensamblado Python</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Python AST Viewer</source>
+        <translation>Visor AST de Python</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3803"/>
+        <source>Show the AST for the current Python file</source>
+        <translation>Mostrar el AST para el archivo de Python actual</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3805"/>
+        <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Visor AST de Python&lt;/b&gt;&lt;p&gt;Abre una vista de árbol del AST del archivo actual de código fuente Python.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3815"/>
+        <source>Python Disassembly Viewer</source>
+        <translation>Visor de Desensamblado Python</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
         <source>Show the Disassembly for the current Python file</source>
         <translation>Mostrar el desensamblado para el archivo Python actual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3800"/>
+        <location filename="../ViewManager/ViewManager.py" line="3824"/>
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Visor Desensamblado Python&lt;/b&gt;&lt;p&gt;Abre una vista de árbol del desensamblado del archivo actual de código Python.&lt;/p&gt;</translation>
     </message>
@@ -81490,6 +81485,27 @@
         <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Buscar anterior&lt;/b&gt;&lt;p&gt;Buscar la anterior ocurrencia de un texto en la ventana de shell. Se reusan el texto y las opciones introducidos previamente.&lt;/p&gt;</translation>
     </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1468"/>
+        <source>Generate Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1468"/>
+        <source>Ctrl+Alt+D</source>
+        <comment>Edit|Generate Docstring</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1475"/>
+        <source>Generate a docstring for the current function/method</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1478"/>
+        <source>&lt;b&gt;Generate Docstring&lt;/b&gt;&lt;p&gt;Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
--- a/eric6/i18n/eric6_fr.ts	Fri Jan 22 16:55:43 2021 +0100
+++ b/eric6/i18n/eric6_fr.ts	Sat Jan 23 12:02:52 2021 +0100
@@ -11374,17 +11374,17 @@
         <translation>Commentaire type &quot;Bloc&quot;</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="828"/>
+        <location filename="../QScintilla/Editor.py" line="832"/>
         <source>Select to brace</source>
         <translation>Sélection parenthèses</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="830"/>
+        <location filename="../QScintilla/Editor.py" line="834"/>
         <source>Select all</source>
         <translation>Tout sélectionner</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="831"/>
+        <location filename="../QScintilla/Editor.py" line="835"/>
         <source>Deselect all</source>
         <translation>Tout déselectionner</translation>
     </message>
@@ -11934,7 +11934,7 @@
         <translation>Correction orthographique...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="839"/>
+        <location filename="../QScintilla/Editor.py" line="843"/>
         <source>Check spelling of selection...</source>
         <translation>Correction orthographique de la sélection...</translation>
     </message>
@@ -11949,7 +11949,7 @@
         <translation>Tout ignorer</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="843"/>
+        <location filename="../QScintilla/Editor.py" line="847"/>
         <source>Remove from dictionary</source>
         <translation>Supprimer du dictionnaire</translation>
     </message>
@@ -12244,12 +12244,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="849"/>
-        <source>Insert Docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8715"/>
+        <location filename="../QScintilla/Editor.py" line="8726"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81897,7 +81892,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2776"/>
+        <location filename="../ViewManager/ViewManager.py" line="2798"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
@@ -81912,977 +81907,977 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Move left one character</source>
         <translation>Déplacement d&apos;un caractère vers la gauche</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Left</source>
         <translation>Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1494"/>
+        <location filename="../ViewManager/ViewManager.py" line="1516"/>
         <source>Move right one character</source>
         <translation>Déplacement d&apos;un caractère vers la droite</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1494"/>
+        <location filename="../ViewManager/ViewManager.py" line="1516"/>
         <source>Right</source>
         <translation>Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1508"/>
+        <location filename="../ViewManager/ViewManager.py" line="1530"/>
         <source>Move up one line</source>
         <translation>Déplacement d&apos;une ligne vers le haut</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1508"/>
+        <location filename="../ViewManager/ViewManager.py" line="1530"/>
         <source>Up</source>
         <translation>Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1520"/>
+        <location filename="../ViewManager/ViewManager.py" line="1542"/>
         <source>Move down one line</source>
         <translation>Déplacement d&apos;une ligne vers le bas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1520"/>
+        <location filename="../ViewManager/ViewManager.py" line="1542"/>
         <source>Down</source>
         <translation>Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1532"/>
+        <location filename="../ViewManager/ViewManager.py" line="1554"/>
         <source>Move left one word part</source>
         <translation>Déplacement d&apos;une part de mot vers la gauche</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1566"/>
+        <location filename="../ViewManager/ViewManager.py" line="1588"/>
         <source>Alt+Left</source>
         <translation>Alt+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1546"/>
+        <location filename="../ViewManager/ViewManager.py" line="1568"/>
         <source>Move right one word part</source>
         <translation>Déplacement d&apos;une part de mot vers la droite</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2446"/>
+        <location filename="../ViewManager/ViewManager.py" line="2468"/>
         <source>Alt+Right</source>
         <translation>Alt+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1560"/>
+        <location filename="../ViewManager/ViewManager.py" line="1582"/>
         <source>Move left one word</source>
         <translation>Déplacement d&apos;un mot vers la gauche</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1611"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Ctrl+Left</source>
         <translation>Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1575"/>
+        <location filename="../ViewManager/ViewManager.py" line="1597"/>
         <source>Move right one word</source>
         <translation>Déplacement d&apos;un mot vers la droite</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2200"/>
+        <location filename="../ViewManager/ViewManager.py" line="2222"/>
         <source>Ctrl+Right</source>
         <translation>Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2401"/>
+        <location filename="../ViewManager/ViewManager.py" line="2423"/>
         <source>Home</source>
         <translation>Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1614"/>
+        <location filename="../ViewManager/ViewManager.py" line="1636"/>
         <source>Alt+Home</source>
         <translation>Alt+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2416"/>
+        <location filename="../ViewManager/ViewManager.py" line="2438"/>
         <source>End</source>
         <translation>End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1637"/>
+        <location filename="../ViewManager/ViewManager.py" line="1659"/>
         <source>Scroll view down one line</source>
         <translation>Descend la vue d&apos;une ligne</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1749"/>
         <source>Ctrl+Down</source>
         <translation>Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1649"/>
+        <location filename="../ViewManager/ViewManager.py" line="1671"/>
         <source>Scroll view up one line</source>
         <translation>Monte la vue d&apos;une ligne</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1710"/>
+        <location filename="../ViewManager/ViewManager.py" line="1732"/>
         <source>Ctrl+Up</source>
         <translation>Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1660"/>
+        <location filename="../ViewManager/ViewManager.py" line="1682"/>
         <source>Move up one paragraph</source>
         <translation>Déplacement d&apos;un paragraphe vers le haut</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1660"/>
+        <location filename="../ViewManager/ViewManager.py" line="1682"/>
         <source>Alt+Up</source>
         <translation>Alt+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1669"/>
+        <location filename="../ViewManager/ViewManager.py" line="1691"/>
         <source>Move down one paragraph</source>
         <translation>Déplacement d&apos;un paragraphe vers le bas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1669"/>
+        <location filename="../ViewManager/ViewManager.py" line="1691"/>
         <source>Alt+Down</source>
         <translation>Alt+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1681"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>Move up one page</source>
         <translation>Déplacement d&apos;une page vers le haut</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1681"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>PgUp</source>
         <translation>PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1690"/>
+        <location filename="../ViewManager/ViewManager.py" line="1712"/>
         <source>Move down one page</source>
         <translation>Déplacement d&apos;une page vers le bas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1690"/>
+        <location filename="../ViewManager/ViewManager.py" line="1712"/>
         <source>PgDown</source>
         <translation>PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1713"/>
+        <location filename="../ViewManager/ViewManager.py" line="1735"/>
         <source>Ctrl+Home</source>
         <translation>Ctrl+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1730"/>
+        <location filename="../ViewManager/ViewManager.py" line="1752"/>
         <source>Ctrl+End</source>
         <translation>Ctrl+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Indent one level</source>
         <translation>Indentation d&apos;un niveau</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Tab</source>
         <translation>Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1745"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Unindent one level</source>
         <translation>Désindentation d&apos;un niveau</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1745"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Shift+Tab</source>
         <translation>Shift+Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1755"/>
+        <location filename="../ViewManager/ViewManager.py" line="1777"/>
         <source>Extend selection left one character</source>
         <translation>Extension de la sélection d&apos;un caractère vers la gauche</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1755"/>
+        <location filename="../ViewManager/ViewManager.py" line="1777"/>
         <source>Shift+Left</source>
         <translation>Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1770"/>
+        <location filename="../ViewManager/ViewManager.py" line="1792"/>
         <source>Extend selection right one character</source>
         <translation>Extension de la sélection d&apos;un caractère vers la droite</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1770"/>
+        <location filename="../ViewManager/ViewManager.py" line="1792"/>
         <source>Shift+Right</source>
         <translation>Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1785"/>
+        <location filename="../ViewManager/ViewManager.py" line="1807"/>
         <source>Extend selection up one line</source>
         <translation>Extension de la sélection d&apos;une ligne vers le haut</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1785"/>
+        <location filename="../ViewManager/ViewManager.py" line="1807"/>
         <source>Shift+Up</source>
         <translation>Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1800"/>
+        <location filename="../ViewManager/ViewManager.py" line="1822"/>
         <source>Extend selection down one line</source>
         <translation>Extension de la sélection d&apos;une ligne vers le bas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1800"/>
+        <location filename="../ViewManager/ViewManager.py" line="1822"/>
         <source>Shift+Down</source>
         <translation>Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1815"/>
+        <location filename="../ViewManager/ViewManager.py" line="1837"/>
         <source>Extend selection left one word part</source>
         <translation>Extension de la sélection d&apos;une part de mot vers la gauche</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="1873"/>
+        <source>Alt+Shift+Left</source>
+        <translation>Alt+Shift+Left</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="1851"/>
-        <source>Alt+Shift+Left</source>
-        <translation>Alt+Shift+Left</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1829"/>
         <source>Extend selection right one word part</source>
         <translation>Extension de la sélection d&apos;une part de mot vers la droite</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2461"/>
+        <location filename="../ViewManager/ViewManager.py" line="2483"/>
         <source>Alt+Shift+Right</source>
         <translation>Alt+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1843"/>
+        <location filename="../ViewManager/ViewManager.py" line="1865"/>
         <source>Extend selection left one word</source>
         <translation>Extension de la sélection d&apos;un mot vers la gauche</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2555"/>
+        <location filename="../ViewManager/ViewManager.py" line="2577"/>
         <source>Ctrl+Shift+Left</source>
         <translation>Ctrl+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1860"/>
+        <location filename="../ViewManager/ViewManager.py" line="1882"/>
         <source>Extend selection right one word</source>
         <translation>Extension de la sélection d&apos;un mot vers la droite</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2217"/>
+        <location filename="../ViewManager/ViewManager.py" line="2239"/>
         <source>Ctrl+Shift+Right</source>
         <translation>Ctrl+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1889"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Shift+Home</source>
         <translation>Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2321"/>
+        <location filename="../ViewManager/ViewManager.py" line="2343"/>
         <source>Alt+Shift+Home</source>
         <translation>Alt+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1906"/>
+        <location filename="../ViewManager/ViewManager.py" line="1928"/>
         <source>Shift+End</source>
         <translation>Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1912"/>
+        <location filename="../ViewManager/ViewManager.py" line="1934"/>
         <source>Extend selection up one paragraph</source>
         <translation>Extension de la sélection d&apos;un paragraphe vers le haut</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1912"/>
+        <location filename="../ViewManager/ViewManager.py" line="1934"/>
         <source>Alt+Shift+Up</source>
         <translation>Alt+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1925"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Extend selection down one paragraph</source>
         <translation>Extension de la sélection d&apos;un paragraphe vers le bas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1925"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Alt+Shift+Down</source>
         <translation>Alt+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Extend selection up one page</source>
         <translation>Extension de la sélection d&apos;une page vers le haut</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Shift+PgUp</source>
         <translation>Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1950"/>
+        <location filename="../ViewManager/ViewManager.py" line="1972"/>
         <source>Extend selection down one page</source>
         <translation>Extension de la sélection d&apos;une page vers le bas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1950"/>
+        <location filename="../ViewManager/ViewManager.py" line="1972"/>
         <source>Shift+PgDown</source>
         <translation>Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1977"/>
+        <location filename="../ViewManager/ViewManager.py" line="1999"/>
         <source>Ctrl+Shift+Home</source>
         <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2016"/>
         <source>Ctrl+Shift+End</source>
         <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2000"/>
+        <location filename="../ViewManager/ViewManager.py" line="2022"/>
         <source>Delete previous character</source>
         <translation>Suppression du caractère précédent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2000"/>
+        <location filename="../ViewManager/ViewManager.py" line="2022"/>
         <source>Backspace</source>
         <translation>Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2031"/>
+        <location filename="../ViewManager/ViewManager.py" line="2053"/>
         <source>Delete current character</source>
         <translation>Suppression du caractère courant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2031"/>
+        <location filename="../ViewManager/ViewManager.py" line="2053"/>
         <source>Del</source>
         <translation>Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2045"/>
+        <location filename="../ViewManager/ViewManager.py" line="2067"/>
         <source>Delete word to left</source>
         <translation>Suppression du mot de gauche</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2045"/>
+        <location filename="../ViewManager/ViewManager.py" line="2067"/>
         <source>Ctrl+Backspace</source>
         <translation>Ctrl+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2056"/>
+        <location filename="../ViewManager/ViewManager.py" line="2078"/>
         <source>Delete word to right</source>
         <translation>Suppression du mot de droite</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2056"/>
+        <location filename="../ViewManager/ViewManager.py" line="2078"/>
         <source>Ctrl+Del</source>
         <translation>Ctrl+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2066"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Delete line to left</source>
         <translation>Suppression de la partie gauche de la ligne</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2066"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation>Ctrl+Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2077"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Delete line to right</source>
         <translation>Suppression de la partie droite de la ligne</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2086"/>
+        <location filename="../ViewManager/ViewManager.py" line="2108"/>
         <source>Ctrl+Shift+Del</source>
         <translation>Ctrl+Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Insert new line</source>
         <translation>Insertion d&apos;une nouvelle ligne</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Return</source>
         <translation>Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2115"/>
-        <source>Delete current line</source>
-        <translation>Suppression de la ligne courante</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2115"/>
-        <source>Ctrl+Shift+L</source>
-        <translation>Ctrl+Shift+L</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2126"/>
-        <source>Duplicate current line</source>
-        <translation>Duplication de la ligne courante</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2126"/>
-        <source>Ctrl+D</source>
-        <translation>Ctrl+D</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2137"/>
-        <source>Swap current and previous lines</source>
-        <translation>Permuter la ligne courante avec la précédente</translation>
+        <source>Delete current line</source>
+        <translation>Suppression de la ligne courante</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="2137"/>
+        <source>Ctrl+Shift+L</source>
+        <translation>Ctrl+Shift+L</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <source>Duplicate current line</source>
+        <translation>Duplication de la ligne courante</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <source>Ctrl+D</source>
+        <translation>Ctrl+D</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2159"/>
+        <source>Swap current and previous lines</source>
+        <translation>Permuter la ligne courante avec la précédente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2159"/>
         <source>Ctrl+T</source>
         <translation>Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2160"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Cut current line</source>
         <translation>Couper la ligne courante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2160"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Alt+Shift+L</source>
         <translation>Alt+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2170"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Copy current line</source>
         <translation>Copier la ligne courante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2170"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Ctrl+Shift+T</source>
         <translation>Ctrl+Shift+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
+        <location filename="../ViewManager/ViewManager.py" line="2203"/>
         <source>Toggle insert/overtype</source>
         <translation>Basculer de mode Insertion /Ecrasement</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
-        <source>Ins</source>
-        <translation>Ins</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2745"/>
-        <source>Convert selection to lower case</source>
-        <translation>Conversion de la sélection en minuscules</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2745"/>
-        <source>Alt+Shift+U</source>
-        <translation>Alt+Shift+U</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2757"/>
-        <source>Convert selection to upper case</source>
-        <translation>Conversion de la sélection en majuscules</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2757"/>
-        <source>Ctrl+Shift+U</source>
-        <translation>Ctrl+Shift+U</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2203"/>
+        <source>Ins</source>
+        <translation>Ins</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2767"/>
+        <source>Convert selection to lower case</source>
+        <translation>Conversion de la sélection en minuscules</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2767"/>
+        <source>Alt+Shift+U</source>
+        <translation>Alt+Shift+U</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2779"/>
+        <source>Convert selection to upper case</source>
+        <translation>Conversion de la sélection en majuscules</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2779"/>
+        <source>Ctrl+Shift+U</source>
+        <translation>Ctrl+Shift+U</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2225"/>
         <source>Alt+End</source>
         <translation>Alt+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2223"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <source>Formfeed</source>
         <translation>Chargement de page</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2232"/>
+        <location filename="../ViewManager/ViewManager.py" line="2254"/>
         <source>Escape</source>
         <translation>Echappement</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2232"/>
+        <location filename="../ViewManager/ViewManager.py" line="2254"/>
         <source>Esc</source>
         <translation>Esc</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2241"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Extend rectangular selection down one line</source>
         <translation>Extension de la sélection rectangulaire d&apos;une ligne vers le bas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2241"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Alt+Ctrl+Down</source>
         <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2257"/>
+        <location filename="../ViewManager/ViewManager.py" line="2279"/>
         <source>Extend rectangular selection up one line</source>
         <translation>Extension de la sélection rectangulaire d&apos;une ligne vers le haut</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2257"/>
+        <location filename="../ViewManager/ViewManager.py" line="2279"/>
         <source>Alt+Ctrl+Up</source>
         <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2272"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Extend rectangular selection left one character</source>
         <translation>Extension de la sélection rectangulaire d&apos;un caractère vers la gauche</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2272"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Alt+Ctrl+Left</source>
         <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2290"/>
+        <location filename="../ViewManager/ViewManager.py" line="2312"/>
         <source>Extend rectangular selection right one character</source>
         <translation>Extension de la sélection rectangulaire d&apos;un caractère vers la droite</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2290"/>
+        <location filename="../ViewManager/ViewManager.py" line="2312"/>
         <source>Alt+Ctrl+Right</source>
         <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2346"/>
+        <location filename="../ViewManager/ViewManager.py" line="2368"/>
         <source>Extend rectangular selection up one page</source>
         <translation>Extension de la sélection rectangulaire d&apos;une page vers le haut</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2361"/>
+        <location filename="../ViewManager/ViewManager.py" line="2383"/>
         <source>Extend rectangular selection down one page</source>
         <translation>Extension de la sélection rectangulaire d&apos;une page vers le bas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3447"/>
+        <location filename="../ViewManager/ViewManager.py" line="3471"/>
         <source>Search</source>
         <translation>Rechercher</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2875"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>&amp;Search...</source>
         <translation>Re&amp;chercher...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2883"/>
+        <location filename="../ViewManager/ViewManager.py" line="2907"/>
         <source>Search for a text</source>
         <translation>Recherche de texte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2885"/>
+        <location filename="../ViewManager/ViewManager.py" line="2909"/>
         <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rechercher&lt;/b&gt;&lt;p&gt;Recherche du texte dans l&apos;éditeur courant. Un fenêtre est affichée pour saisir le texte recherché et le options de recherche.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>Replace</source>
         <translation>Remplacer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>&amp;Replace...</source>
         <translation>&amp;Remplacer...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3008"/>
+        <location filename="../ViewManager/ViewManager.py" line="3032"/>
         <source>Replace some text</source>
         <translation>Remplacer un texte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3010"/>
+        <location filename="../ViewManager/ViewManager.py" line="3034"/>
         <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Remplacer&lt;/b&gt;&lt;p&gt;Recherche du texte dans l&apos;éditeur courant et le remplace par un autre. Un fenêtre est affichée pour saisir le texte initial, le texte de remplacement et les options de remplacement.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3160"/>
+        <location filename="../ViewManager/ViewManager.py" line="3184"/>
         <source>Goto Line</source>
         <translation>Aller à la ligne</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <location filename="../ViewManager/ViewManager.py" line="3176"/>
         <source>&amp;Goto Line...</source>
         <translation>Aller à la &amp;ligne...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3162"/>
+        <location filename="../ViewManager/ViewManager.py" line="3186"/>
         <source>&lt;b&gt;Goto Line&lt;/b&gt;&lt;p&gt;Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aller à la ligne&lt;/b&gt;&lt;p&gt;Déplacement vers la ligne indiquée. Un fenêtre permet de saisir le numéro de ligne.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <location filename="../ViewManager/ViewManager.py" line="3203"/>
         <source>Goto Brace</source>
         <translation>Aller à la parenthèse</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <location filename="../ViewManager/ViewManager.py" line="3195"/>
         <source>Goto &amp;Brace</source>
         <translation>Aller à la &amp;parenthèse</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3181"/>
+        <location filename="../ViewManager/ViewManager.py" line="3205"/>
         <source>&lt;b&gt;Goto Brace&lt;/b&gt;&lt;p&gt;Go to the matching brace in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aller à la parenthèse correspondante&lt;/b&gt;&lt;p&gt;A partir d&apos;une parenthèse ouvrante ou fermante, déplace le curseur jusqu&apos;à l&apos;autre parenthèse.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Search in Files</source>
         <translation>Rechercher dans les fichiers</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Search in &amp;Files...</source>
         <translation>Rechercher dans les &amp;Fichiers...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3267"/>
+        <location filename="../ViewManager/ViewManager.py" line="3291"/>
         <source>Search for a text in files</source>
         <translation>Rechercher un texte dans les fichiers</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3269"/>
+        <location filename="../ViewManager/ViewManager.py" line="3293"/>
         <source>&lt;b&gt;Search in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rechercher un texte dans les fichiers&lt;/b&gt;&lt;p&gt;Recherche un texte dans les fichiers d&apos;un répertoire ou du projet. Une fenêtre permet de saisir les options de recherche et d&apos;afficher les résultats.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom in</source>
         <translation>Zoom avant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom &amp;in</source>
         <translation>Zoom a&amp;vant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3496"/>
+        <location filename="../ViewManager/ViewManager.py" line="3520"/>
         <source>Zoom in on the text</source>
         <translation>Zoom sur le texte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3498"/>
+        <location filename="../ViewManager/ViewManager.py" line="3522"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zoom avant&lt;/b&gt;&lt;p&gt;Zoom sur le texte. Affiche le texte en plus gros.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom out</source>
         <translation>Zoom arrière</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom &amp;out</source>
         <translation>Zoom a&amp;rrière</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3515"/>
+        <location filename="../ViewManager/ViewManager.py" line="3539"/>
         <source>Zoom out on the text</source>
         <translation>Zoom arrière du texte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3517"/>
+        <location filename="../ViewManager/ViewManager.py" line="3541"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zoom arrière&lt;/b&gt;&lt;p&gt;Zoom arrière du texte. Affiche le texte en plus petit.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>Zoom</source>
         <translation>Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>&amp;Zoom</source>
         <translation>&amp;Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3552"/>
+        <location filename="../ViewManager/ViewManager.py" line="3576"/>
         <source>Zoom the text</source>
         <translation>Zoom du texte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3554"/>
+        <location filename="../ViewManager/ViewManager.py" line="3578"/>
         <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom du texte. Ouvre une fenêtre pour entrer la taille souhaitée.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3567"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Toggle all folds</source>
         <translation>Contracte/Déploie tout le code</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <location filename="../ViewManager/ViewManager.py" line="3587"/>
         <source>&amp;Toggle all folds</source>
         <translation type="unfinished">Contracte/Déploie &amp;tout le code</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3569"/>
+        <location filename="../ViewManager/ViewManager.py" line="3593"/>
         <source>&lt;b&gt;Toggle all folds&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Contracte/Déploie tout le code&lt;/b&gt;&lt;p&gt;Contracte ou déploie tout le code de la page en cours.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3599"/>
+        <location filename="../ViewManager/ViewManager.py" line="3623"/>
         <source>Toggle current fold</source>
         <translation>Contracte/Déploie le paragraphe courant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3595"/>
+        <location filename="../ViewManager/ViewManager.py" line="3619"/>
         <source>Toggle &amp;current fold</source>
         <translation>Contracte/Déploie le paragraphe &amp;courant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3601"/>
+        <location filename="../ViewManager/ViewManager.py" line="3625"/>
         <source>&lt;b&gt;Toggle current fold&lt;/b&gt;&lt;p&gt;Toggle the folds of the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Contracte/Déploie le paragraphe courant&lt;/b&gt;&lt;p&gt;Applique la contraction de code au paragraphe courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3631"/>
+        <location filename="../ViewManager/ViewManager.py" line="3655"/>
         <source>Remove all highlights</source>
         <translation>Suppression de tous les surlignages</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3633"/>
+        <location filename="../ViewManager/ViewManager.py" line="3657"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Suppression de tous les surlignages&lt;/b&gt;&lt;p&gt;Supprime tous les surlignage présents dans la page.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3703"/>
         <source>Split view</source>
         <translation>Diviser la fenêtre</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3703"/>
         <source>&amp;Split view</source>
         <translation>&amp;Diviser la fenêtre</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3684"/>
+        <location filename="../ViewManager/ViewManager.py" line="3708"/>
         <source>Add a split to the view</source>
         <translation>Ajoute une division de fenêtre</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3686"/>
+        <location filename="../ViewManager/ViewManager.py" line="3710"/>
         <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Diviser la fenêtre&lt;/b&gt;&lt;p&gt;Ajoute un division supplémentaire à la fenêtre courante.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3694"/>
+        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>Arrange horizontally</source>
         <translation>Division horizontale/verticale</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3694"/>
+        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>Arrange &amp;horizontally</source>
         <translation>Division &amp;horizontale/verticale</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3698"/>
+        <location filename="../ViewManager/ViewManager.py" line="3722"/>
         <source>Arrange the splitted views horizontally</source>
         <translation>Bascule la division horizontalement ou verticalement</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3700"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Division horizontale/verticale&lt;/b&gt;&lt;p&gt;Bascule la division horizontalement ou verticalement, selon.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3709"/>
+        <location filename="../ViewManager/ViewManager.py" line="3733"/>
         <source>Remove split</source>
         <translation>Suppression du découpage</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3709"/>
+        <location filename="../ViewManager/ViewManager.py" line="3733"/>
         <source>&amp;Remove split</source>
         <translation>&amp;Suppression du découpage</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3714"/>
+        <location filename="../ViewManager/ViewManager.py" line="3738"/>
         <source>Remove the current split</source>
         <translation>Supprime le découpage de fenêtre courant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3716"/>
+        <location filename="../ViewManager/ViewManager.py" line="3740"/>
         <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Suppression du découpage&lt;/b&gt;&lt;p&gt;Supprime le découpage de fenêtre courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3906"/>
-        <source>Start Macro Recording</source>
-        <translation>Démarrer l&apos;enregistrement de la macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3900"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation>&amp;Démarrer l&apos;enregistrement de la macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3908"/>
-        <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Démarrer l&apos;enregistrement de la macro&lt;/b&gt;&lt;p&gt;Démarre l&apos;enregistrement des commandes de l&apos;éditeur dans une nouvelle macro.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
-        <source>Stop Macro Recording</source>
-        <translation>Arrêter l&apos;enregistrement de la macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3916"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation>&amp;Arrêter l&apos;enregistrement de la macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3922"/>
-        <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Arrêter l&apos;enregistrement de la macro&lt;/b&gt;&lt;p&gt;Arrête l&apos;enregistrement des commandes de l&apos;éditeur dans la nouvelle macro..&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3934"/>
-        <source>Run Macro</source>
-        <translation>Lancer une macro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3930"/>
-        <source>&amp;Run Macro</source>
-        <translation>&amp;Lancer une macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3936"/>
-        <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Lancer une macro&lt;/b&gt;&lt;p&gt;Lance une macro déjà enregistrée.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3948"/>
-        <source>Delete Macro</source>
-        <translation>Supprimer une macro</translation>
+        <source>Start Macro Recording</source>
+        <translation>Démarrer l&apos;enregistrement de la macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3924"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation>&amp;Démarrer l&apos;enregistrement de la macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3932"/>
+        <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Démarrer l&apos;enregistrement de la macro&lt;/b&gt;&lt;p&gt;Démarre l&apos;enregistrement des commandes de l&apos;éditeur dans une nouvelle macro.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3944"/>
-        <source>&amp;Delete Macro</source>
-        <translation>&amp;Supprimer une macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3950"/>
-        <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Supprimer une macro&lt;/b&gt;&lt;p&gt;Supprime une macro déjà enregistrée.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3962"/>
-        <source>Load Macro</source>
-        <translation>Charger une macro</translation>
+        <source>Stop Macro Recording</source>
+        <translation>Arrêter l&apos;enregistrement de la macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3940"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation>&amp;Arrêter l&apos;enregistrement de la macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3946"/>
+        <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Arrêter l&apos;enregistrement de la macro&lt;/b&gt;&lt;p&gt;Arrête l&apos;enregistrement des commandes de l&apos;éditeur dans la nouvelle macro..&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3958"/>
-        <source>&amp;Load Macro</source>
-        <translation>&amp;Charger une macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3964"/>
-        <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Charger une macro&lt;/b&gt;&lt;p&gt;Charger une macro déjà enregistrée à partir d&apos;un fichier.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3976"/>
-        <source>Save Macro</source>
-        <translation>Enregistrer une macro</translation>
+        <source>Run Macro</source>
+        <translation>Lancer une macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3954"/>
+        <source>&amp;Run Macro</source>
+        <translation>&amp;Lancer une macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3960"/>
+        <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Lancer une macro&lt;/b&gt;&lt;p&gt;Lance une macro déjà enregistrée.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3972"/>
+        <source>Delete Macro</source>
+        <translation>Supprimer une macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3968"/>
+        <source>&amp;Delete Macro</source>
+        <translation>&amp;Supprimer une macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3974"/>
+        <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Supprimer une macro&lt;/b&gt;&lt;p&gt;Supprime une macro déjà enregistrée.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3986"/>
+        <source>Load Macro</source>
+        <translation>Charger une macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3982"/>
+        <source>&amp;Load Macro</source>
+        <translation>&amp;Charger une macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3988"/>
+        <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Charger une macro&lt;/b&gt;&lt;p&gt;Charger une macro déjà enregistrée à partir d&apos;un fichier.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4000"/>
+        <source>Save Macro</source>
+        <translation>Enregistrer une macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3996"/>
         <source>&amp;Save Macro</source>
         <translation>&amp;Enregistrer la macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3978"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Enregistrer une macro&lt;/b&gt;&lt;p&gt;Enregistrer une macro dans un fichier.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4020"/>
+        <location filename="../ViewManager/ViewManager.py" line="4044"/>
         <source>Toggle Bookmark</source>
         <translation>Placer/Supprimer un signet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
         <source>&amp;Toggle Bookmark</source>
         <translation>&amp;Placer/Supprimer un signet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4022"/>
+        <location filename="../ViewManager/ViewManager.py" line="4046"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Placer/Supprimer un signet&lt;/b&gt;&lt;p&gt;Place ou enlève un signet sur la ligne courante.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4039"/>
+        <location filename="../ViewManager/ViewManager.py" line="4063"/>
         <source>Next Bookmark</source>
         <translation>Signet suivant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>&amp;Next Bookmark</source>
         <translation>Signet suiva&amp;nt</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4041"/>
+        <location filename="../ViewManager/ViewManager.py" line="4065"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Signet suivant&lt;/b&gt;&lt;p&gt;Avance jusqu&apos;au signet suivant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <location filename="../ViewManager/ViewManager.py" line="4081"/>
         <source>Previous Bookmark</source>
         <translation>Signet précédent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <location filename="../ViewManager/ViewManager.py" line="4073"/>
         <source>&amp;Previous Bookmark</source>
         <translation>Signet &amp;précédent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4059"/>
+        <location filename="../ViewManager/ViewManager.py" line="4083"/>
         <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Signet précédent&lt;/b&gt;&lt;p&gt;Remonte au signet précédent.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4074"/>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <source>Clear Bookmarks</source>
         <translation>Supprimer les signets</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4091"/>
         <source>&amp;Clear Bookmarks</source>
         <translation>S&amp;upprimer les signets</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4076"/>
+        <location filename="../ViewManager/ViewManager.py" line="4100"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Supprimer les signets&lt;/b&gt;&lt;p&gt;Supprime tous les signets de tous les éditeurs ouverts.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4285"/>
+        <location filename="../ViewManager/ViewManager.py" line="4309"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Signets</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4527"/>
+        <location filename="../ViewManager/ViewManager.py" line="4551"/>
         <source>File Modified</source>
         <translation>Fichier Modifié</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5371"/>
+        <location filename="../ViewManager/ViewManager.py" line="5395"/>
         <source>&amp;Clear</source>
         <translation>&amp;Effacer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5365"/>
+        <location filename="../ViewManager/ViewManager.py" line="5389"/>
         <source>&amp;Add</source>
         <translation>&amp;Ajouter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5368"/>
+        <location filename="../ViewManager/ViewManager.py" line="5392"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Editer...</translation>
     </message>
@@ -82937,32 +82932,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <location filename="../ViewManager/ViewManager.py" line="4114"/>
         <source>Goto Syntax Error</source>
         <translation>Aller à l&apos;erreur de syntaxe suivante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4084"/>
+        <location filename="../ViewManager/ViewManager.py" line="4108"/>
         <source>&amp;Goto Syntax Error</source>
         <translation>Aller à l&apos;erreur de s&amp;yntaxe suivante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4092"/>
+        <location filename="../ViewManager/ViewManager.py" line="4116"/>
         <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aller à l&apos;erreur de syntaxe suivante&lt;/b&gt;&lt;p&gt;Avance jusqu&apos;à l&apos;erreur de syntaxe suivante.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4105"/>
+        <location filename="../ViewManager/ViewManager.py" line="4129"/>
         <source>Clear Syntax Errors</source>
         <translation>Effacer les erreurs de syntaxe</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4100"/>
+        <location filename="../ViewManager/ViewManager.py" line="4124"/>
         <source>Clear &amp;Syntax Errors</source>
         <translation>E&amp;ffacer les erreurs de syntaxe</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4107"/>
+        <location filename="../ViewManager/ViewManager.py" line="4131"/>
         <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Effacer les erreurs de syntaxe&lt;/b&gt;&lt;p&gt;Supprime tous les flags d&apos;erreurs de syntaxe de tous les éditeurs ouverts.&lt;/p&gt;</translation>
     </message>
@@ -82985,37 +82980,37 @@
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2012"/>
+        <location filename="../ViewManager/ViewManager.py" line="2034"/>
         <source>Shift+Backspace</source>
         <translation>Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4175"/>
+        <location filename="../ViewManager/ViewManager.py" line="4199"/>
         <source>Next uncovered line</source>
         <translation>Ligne non executée suivante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4169"/>
+        <location filename="../ViewManager/ViewManager.py" line="4193"/>
         <source>&amp;Next uncovered line</source>
         <translation>Ligne non executée &amp;suivante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4177"/>
+        <location filename="../ViewManager/ViewManager.py" line="4201"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ligne non executée suivante&lt;/b&gt;&lt;p&gt;Avance jusqu&apos;à la prochaine ligne de l&apos;éditeur marquée comme &quot;jamais executée&quot; par le code coverage.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4194"/>
+        <location filename="../ViewManager/ViewManager.py" line="4218"/>
         <source>Previous uncovered line</source>
         <translation>Ligne non executée précédente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4186"/>
+        <location filename="../ViewManager/ViewManager.py" line="4210"/>
         <source>&amp;Previous uncovered line</source>
         <translation>Ligne non executée &amp;précédente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4196"/>
+        <location filename="../ViewManager/ViewManager.py" line="4220"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ligne non executée précédente&lt;/b&gt;&lt;p&gt;Retourne à la dernière ligne de l&apos;éditeur marquée comme &quot;jamais executée&quot; par le code coverage.&lt;/p&gt;</translation>
     </message>
@@ -83030,70 +83025,70 @@
         <translation>&lt;b&gt;Ouvrir un fichier&lt;/b&gt;&lt;p&gt;Le nom d&apos;un fichier à ouvrir dans un éditeur vous est demandé.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3387"/>
+        <location filename="../ViewManager/ViewManager.py" line="3411"/>
         <source>Quicksearch</source>
         <translation>Recherche rapide</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3088"/>
+        <location filename="../ViewManager/ViewManager.py" line="3112"/>
         <source>Ctrl+Shift+K</source>
         <comment>Search|Quicksearch</comment>
         <translation>Ctrl+Shift+K</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3096"/>
+        <location filename="../ViewManager/ViewManager.py" line="3120"/>
         <source>Perform a quicksearch</source>
         <translation>Lancer une recherche rapide</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <source>Quicksearch backwards</source>
         <translation>Recherche rapide en arrière</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <source>Ctrl+Shift+J</source>
         <comment>Search|Quicksearch backwards</comment>
         <translation>Ctrl+Shift+J</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3119"/>
+        <location filename="../ViewManager/ViewManager.py" line="3143"/>
         <source>Perform a quicksearch backwards</source>
         <translation>Effectue une recherche rapide en arrière</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3088"/>
+        <location filename="../ViewManager/ViewManager.py" line="3112"/>
         <source>&amp;Quicksearch</source>
         <translation>&amp;Recherche rapide</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <source>Quicksearch &amp;backwards</source>
         <translation>Recherche &amp;rapide en arrière</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Quicksearch extend</source>
         <translation>Etendre au mot complet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Quicksearch e&amp;xtend</source>
         <translation>&amp;Etendre au mot complet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Ctrl+Shift+H</source>
         <comment>Search|Quicksearch extend</comment>
         <translation>Ctrl+Shift+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3139"/>
+        <location filename="../ViewManager/ViewManager.py" line="3163"/>
         <source>Extend the quicksearch to the end of the current word</source>
         <translation>Etend la recherche rapide à la fin du mot courant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3142"/>
+        <location filename="../ViewManager/ViewManager.py" line="3166"/>
         <source>&lt;b&gt;Quicksearch extend&lt;/b&gt;&lt;p&gt;This extends the quicksearch text to the end of the word currently found.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Extension de la sélection au mot complet&lt;/b&gt;&lt;p&gt;Pour la recherche rapide, cette fonction permet d&apos;étendre la sélection au mot courant.&lt;/p&gt;</translation>
     </message>
@@ -83113,47 +83108,47 @@
         <translation>&lt;b&gt;Indentation intelligente&lt;/b&gt;&lt;p&gt;Indente intelligemment la ou les lignes sélectionnées.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3724"/>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
         <source>Next split</source>
         <translation>Onglet suivant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3724"/>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
         <source>&amp;Next split</source>
         <translation>O&amp;nglet suivant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3731"/>
+        <location filename="../ViewManager/ViewManager.py" line="3755"/>
         <source>Move to the next split</source>
         <translation>Basculer vers l&apos;onglet suivant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3733"/>
+        <location filename="../ViewManager/ViewManager.py" line="3757"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Onglet suivant&lt;/b&gt;&lt;p&gt;Basculer vers l&apos;onglet suivant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>Previous split</source>
         <translation>Onglet précédent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>&amp;Previous split</source>
         <translation>Onglet &amp;précédent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3747"/>
+        <location filename="../ViewManager/ViewManager.py" line="3771"/>
         <source>Move to the previous split</source>
         <translation>Basculer vers l&apos;onglet précédent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3749"/>
+        <location filename="../ViewManager/ViewManager.py" line="3773"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Onglet précédent&lt;/b&gt;&lt;p&gt;Basculer vers l&apos;onglet précédent.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Enter</source>
         <translation>Enter</translation>
     </message>
@@ -83173,27 +83168,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <location filename="../ViewManager/ViewManager.py" line="3607"/>
         <source>Toggle all folds (including children)</source>
         <translation>Contracte/Déploie tout le code (sous-niveaux inclus)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3577"/>
+        <location filename="../ViewManager/ViewManager.py" line="3601"/>
         <source>Toggle all &amp;folds (including children)</source>
         <translation>Contracte/&amp;Déploie tout le code (sous-niveaux inclus)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3585"/>
+        <location filename="../ViewManager/ViewManager.py" line="3609"/>
         <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Contracte/Déploie tout le code (sous-niveaux inclus)&lt;/b&gt;&lt;p&gt;Contracte/Déploie tout le code de l&apos;éditeur courant en incluant tous les sous-niveaux d&apos;indentation&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2379"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Duplicate current selection</source>
         <translation>Duplication de la sélection courante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2379"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Ctrl+Shift+D</source>
         <translation>Ctrl+Shift+D</translation>
     </message>
@@ -83340,187 +83335,187 @@
         <translation>Alt+Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2786"/>
+        <location filename="../ViewManager/ViewManager.py" line="2808"/>
         <source>&amp;Edit</source>
         <translation>&amp;Edition</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2843"/>
+        <location filename="../ViewManager/ViewManager.py" line="2867"/>
         <source>Edit</source>
         <translation>Édition</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2875"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation>Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation>Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <location filename="../ViewManager/ViewManager.py" line="3176"/>
         <source>Ctrl+G</source>
         <comment>Search|Goto Line</comment>
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <location filename="../ViewManager/ViewManager.py" line="3195"/>
         <source>Ctrl+L</source>
         <comment>Search|Goto Brace</comment>
         <translation>Ctrl+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation>Shift+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation>Ctrl+#</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3724"/>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation>Ctrl+Alt+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation>Ctrl+Alt+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3833"/>
+        <location filename="../ViewManager/ViewManager.py" line="3857"/>
         <source>&amp;View</source>
         <translation>&amp;Affichage</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3870"/>
+        <location filename="../ViewManager/ViewManager.py" line="3894"/>
         <source>View</source>
         <translation>Affichage</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3994"/>
+        <location filename="../ViewManager/ViewManager.py" line="4018"/>
         <source>&amp;Macros</source>
         <translation>&amp;Macros</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation>Alt+Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation>Ctrl+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <location filename="../ViewManager/ViewManager.py" line="4073"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation>Ctrl+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4091"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation>Alt+Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4355"/>
         <source>Bookmarks</source>
         <translation>Signets</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4483"/>
+        <location filename="../ViewManager/ViewManager.py" line="4507"/>
         <source>Open files</source>
         <translation>Ouvrir Fichiers</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4236"/>
         <source>Next Task</source>
         <translation>Tâche suivante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4206"/>
+        <location filename="../ViewManager/ViewManager.py" line="4230"/>
         <source>&amp;Next Task</source>
         <translation>Tâche suiva&amp;nte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4214"/>
+        <location filename="../ViewManager/ViewManager.py" line="4238"/>
         <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tâche suivante&lt;/b&gt;&lt;p&gt;Avance jusqu&apos;à la prochaine ligne ayant une tâche dans l&apos;éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4229"/>
+        <location filename="../ViewManager/ViewManager.py" line="4253"/>
         <source>Previous Task</source>
         <translation>Tâche précédente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4222"/>
+        <location filename="../ViewManager/ViewManager.py" line="4246"/>
         <source>&amp;Previous Task</source>
         <translation>Tâche &amp;précédente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4255"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tâche précédente&lt;/b&gt;&lt;p&gt;Remonte jusqu&apos;à la tâche précédente dans l&apos;éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3352"/>
+        <location filename="../ViewManager/ViewManager.py" line="3376"/>
         <source>&amp;Search</source>
         <translation>Re&amp;chercher</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Search next</source>
         <translation>Chercher suivant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Search &amp;next</source>
         <translation>Chercher &amp;suivant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation>F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Search previous</source>
         <translation>Chercher précédent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Search &amp;previous</source>
         <translation>Chercher &amp;précédent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation>Shift+F3</translation>
@@ -83546,7 +83541,7 @@
         <translation>Exporter en tant que</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3433"/>
+        <location filename="../ViewManager/ViewManager.py" line="3457"/>
         <source>Quicksearch Textedit</source>
         <translation>Edition de la recherche rapide</translation>
     </message>
@@ -83577,58 +83572,58 @@
         <translation>&lt;b&gt;Calltip&lt;/b&gt;&lt;p&gt;Affiche les calltips (suggestions d&apos;arguments) trouvés à partir des caractères à gauche du curseur.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2904"/>
+        <location filename="../ViewManager/ViewManager.py" line="2928"/>
         <source>Search next occurrence of text</source>
         <translation>Recherche de l&apos;occurence de texte suivante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2906"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Chercher suivant&lt;/b&gt;&lt;p&gt;Recherche en avant le texte saisi dans l&apos;éditeur courant. Les options de recherche précédentes sont réutilisées.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2924"/>
+        <location filename="../ViewManager/ViewManager.py" line="2948"/>
         <source>Search previous occurrence of text</source>
         <translation>Recherche de l&apos;occurence de texte précédente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2926"/>
+        <location filename="../ViewManager/ViewManager.py" line="2950"/>
         <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Chercher précédent&lt;/b&gt;&lt;p&gt;Recherche en arrière le texte saisi dans l&apos;éditeur courant. Les options de recherche précédentes sont réutilisées.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2936"/>
+        <location filename="../ViewManager/ViewManager.py" line="2960"/>
         <source>Clear search markers</source>
         <translation>Effacer les marqueurs de recherche</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2936"/>
+        <location filename="../ViewManager/ViewManager.py" line="2960"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation>Ctrl+3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2944"/>
+        <location filename="../ViewManager/ViewManager.py" line="2968"/>
         <source>Clear all displayed search markers</source>
         <translation>Efface tous les marqueurs de recherche affichés</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2946"/>
+        <location filename="../ViewManager/ViewManager.py" line="2970"/>
         <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Effacer tous les marqueurs de recherche&lt;/b&gt;&lt;p&gt;Efface tous les marqueurs de recherche affichés.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3098"/>
-        <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Recherche rapide&lt;/b&gt;&lt;p&gt;Ceci active la fonction de recherche rapide. Si le champ est déjà actif et contient du texte, la fonction recherche l&apos;occurence suivante du texte.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3122"/>
+        <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Recherche rapide&lt;/b&gt;&lt;p&gt;Ceci active la fonction de recherche rapide. Si le champ est déjà actif et contient du texte, la fonction recherche l&apos;occurence suivante du texte.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3146"/>
         <source>&lt;b&gt;Quicksearch backwards&lt;/b&gt;&lt;p&gt;This searches the previous occurrence of the quicksearch text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Recherche rapide en arrière&lt;/b&gt;&lt;p&gt;Permet de rechercher l&apos;ocurrence précédente du texte recherché.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3406"/>
+        <location filename="../ViewManager/ViewManager.py" line="3430"/>
         <source>&lt;p&gt;Enter the searchtext directly into this field. The search will be performed case insensitive. The quicksearch function is activated upon activation of the quicksearch next action (default key Ctrl+Shift+K), if this entry field does not have the input focus. Otherwise it searches for the next occurrence of the text entered. The quicksearch backwards action (default key Ctrl+Shift+J) searches backward. Activating the &apos;quicksearch extend&apos; action (default key Ctrl+Shift+H) extends the current searchtext to the end of the currently found word. The quicksearch can be ended by pressing the Return key while the quicksearch entry has the the input focus.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Saisir le texte à rechercher dans ce champ. La recherche tiendra compte de la casse. Si le champ de saisie n&apos;a pas le focus, la fonction de recherche rapide s&apos;active automatiquement quand on lance la recherche d&apos;occurence suivante (raccourci Ctrl+Shift+K par défaut). Sinon, c&apos;est la recherche de l&apos;occurence suivante qui est effectuée. La recherche rapide arrière (raccourci Ctrl+Shift+J par défaut) permet de rechercher en arrière dans le texte. En activant &quot;l&apos;extension de recherche rapide&quot;  (Ctrl+Shift+H par défaut), on étend le texte de recherche au mot courant trouvé. On quitte la recherche rapide en appuyant sur &apos;Enter&apos; lorsque le champ de saisie a le focus.&lt;/p&gt;</translation>
     </message>
@@ -83648,124 +83643,124 @@
         <translation>&lt;b&gt;Aperçu avant impression&lt;/b&gt;&lt;p&gt;Aperçu avant impression de l&apos;éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Insert new line below current line</source>
         <translation>Insère une ligne avant la ligne courante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Shift+Return</source>
         <translation>Shift+Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Shift+Enter</source>
         <translation>Shift+Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Replace in Files</source>
         <translation>Remplacer dans les fichiers</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Replace in F&amp;iles...</source>
         <translation>Remplacer dans les f&amp;ichiers...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation>Shift+Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3286"/>
+        <location filename="../ViewManager/ViewManager.py" line="3310"/>
         <source>Search for a text in files and replace it</source>
         <translation>Recherche puis remplace un texte dans des fichiers</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3288"/>
+        <location filename="../ViewManager/ViewManager.py" line="3312"/>
         <source>&lt;b&gt;Replace in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Remplacer un texte dans les fichiers&lt;/b&gt;&lt;p&gt;Recherche un texte dans les fichiers d&apos;un répertoire ou du projet. Une fenêtre permet de saisir les options de recherche et de remplacement, et d&apos;afficher les résultats.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4373"/>
+        <location filename="../ViewManager/ViewManager.py" line="4397"/>
         <source>Perform spell check of current editor</source>
         <translation>Effectue la vérification orthographique dans l&apos;éditeur courant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4383"/>
+        <location filename="../ViewManager/ViewManager.py" line="4407"/>
         <source>Automatic spell checking</source>
         <translation>Vérification orthographique automatique</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4383"/>
+        <location filename="../ViewManager/ViewManager.py" line="4407"/>
         <source>&amp;Automatic spell checking</source>
         <translation>Vérification orthographique &amp;automatique</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4391"/>
+        <location filename="../ViewManager/ViewManager.py" line="4415"/>
         <source>(De-)Activate automatic spell checking</source>
         <translation>Active/Désactive la vérification orthographique automatique</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4393"/>
+        <location filename="../ViewManager/ViewManager.py" line="4417"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vérification orthographique&lt;/b&gt;&lt;p&gt;Active ou désactive la vérification orthographique automatique dans tous les éditeurs.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4460"/>
+        <location filename="../ViewManager/ViewManager.py" line="4484"/>
         <source>Spelling</source>
         <translation>Orthographe</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4527"/>
+        <location filename="../ViewManager/ViewManager.py" line="4551"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Le fichier &lt;b&gt;{0}&lt;/b&gt; a des modifications non enregistrées. &lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4926"/>
+        <location filename="../ViewManager/ViewManager.py" line="4950"/>
         <source>Line: {0:5}</source>
         <translation>Ligne: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4932"/>
+        <location filename="../ViewManager/ViewManager.py" line="4956"/>
         <source>Pos: {0:5}</source>
         <translation>Position: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4122"/>
+        <location filename="../ViewManager/ViewManager.py" line="4146"/>
         <source>Next warning message</source>
         <translation>Message d&apos;avertissement suivant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4116"/>
+        <location filename="../ViewManager/ViewManager.py" line="4140"/>
         <source>&amp;Next warning message</source>
         <translation>Message d&apos;avertisseme&amp;nt suivant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4141"/>
+        <location filename="../ViewManager/ViewManager.py" line="4165"/>
         <source>Previous warning message</source>
         <translation>Message d&apos;avertissement précédente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4133"/>
+        <location filename="../ViewManager/ViewManager.py" line="4157"/>
         <source>&amp;Previous warning message</source>
         <translation>Message d&apos;avertissement &amp;précédente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4159"/>
+        <location filename="../ViewManager/ViewManager.py" line="4183"/>
         <source>Clear Warning Messages</source>
         <translation>Vider messages d&apos;avertissement</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4152"/>
+        <location filename="../ViewManager/ViewManager.py" line="4176"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>Vider messages d&apos;&amp;avertissement</translation>
     </message>
@@ -83786,425 +83781,425 @@
         <translation>&lt;b&gt;Unir lignes&lt;/b&gt;&lt;p&gt;Unir la ligne actuelle avec les lignes suivantes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3200"/>
+        <location filename="../ViewManager/ViewManager.py" line="3224"/>
         <source>Goto Last Edit Location</source>
         <translation>Aller à la dernière modification</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3213"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation>Aller à la dernièr&amp;e modification</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3213"/>
         <source>Ctrl+Shift+G</source>
         <comment>Search|Goto Last Edit Location</comment>
         <translation>Ctrl+Shift+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3203"/>
+        <location filename="../ViewManager/ViewManager.py" line="3227"/>
         <source>&lt;b&gt;Goto Last Edit Location&lt;/b&gt;&lt;p&gt;Go to the location of the last edit in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aller à la dernière modification&lt;/b&gt;&lt;p&gt;Aller à l&apos;endroit de la derniére modification dans l&apos;éditeur actuel.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3212"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Goto Previous Method or Class</source>
         <translation>Aller à la classe ou fonction précédentes</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3212"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Ctrl+Shift+Up</source>
         <comment>Search|Goto Previous Method or Class</comment>
         <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3222"/>
-        <source>Go to the previous method or class definition</source>
-        <translation>Aller à la définition de classe ou de fonction précédente</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3226"/>
-        <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Aller à la classe ou fonction précédente&lt;/b&gt;&lt;p&gt;Va à la ligne de classe ou fonction précédent et surligne le nom. &lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3236"/>
-        <source>Goto Next Method or Class</source>
-        <translation>Aller à la classe ou fonction suivante</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3236"/>
-        <source>Ctrl+Shift+Down</source>
-        <comment>Search|Goto Next Method or Class</comment>
-        <translation>Ctrl+Shift+Down</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3246"/>
+        <source>Go to the previous method or class definition</source>
+        <translation>Aller à la définition de classe ou de fonction précédente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3250"/>
+        <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Aller à la classe ou fonction précédente&lt;/b&gt;&lt;p&gt;Va à la ligne de classe ou fonction précédent et surligne le nom. &lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3260"/>
+        <source>Goto Next Method or Class</source>
+        <translation>Aller à la classe ou fonction suivante</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3260"/>
+        <source>Ctrl+Shift+Down</source>
+        <comment>Search|Goto Next Method or Class</comment>
+        <translation>Ctrl+Shift+Down</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3270"/>
         <source>Go to the next method or class definition</source>
         <translation>Aller à la définition de classe ou de fonction suivante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3248"/>
+        <location filename="../ViewManager/ViewManager.py" line="3272"/>
         <source>&lt;b&gt;Goto Next Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the next method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aller à la classe ou fonction suivante&lt;/b&gt;&lt;p&gt;Va à la ligne de classe ou fonction suivante et surligne le nom. &lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3757"/>
+        <location filename="../ViewManager/ViewManager.py" line="3781"/>
         <source>Preview</source>
         <translation>Aperçu</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3762"/>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <source>Preview the current file in the web browser</source>
         <translation>Avoir un aperçu du fichier courant dans le navigateur</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3764"/>
+        <location filename="../ViewManager/ViewManager.py" line="3788"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aperçu&lt;/b&gt;&lt;p&gt;Ceci ouvre le navigateur avec un aperçu du fichier courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1489"/>
+        <location filename="../ViewManager/ViewManager.py" line="1511"/>
         <source>Meta+B</source>
         <translation>Meta+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1502"/>
+        <location filename="../ViewManager/ViewManager.py" line="1524"/>
         <source>Meta+F</source>
         <translation>Meta+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1514"/>
+        <location filename="../ViewManager/ViewManager.py" line="1536"/>
         <source>Meta+P</source>
         <translation>Meta+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1526"/>
+        <location filename="../ViewManager/ViewManager.py" line="1548"/>
         <source>Meta+N</source>
         <translation>Meta+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1587"/>
+        <location filename="../ViewManager/ViewManager.py" line="1609"/>
         <source>Move to first visible character in document line</source>
         <translation>Déplacement vers le premier caractère visible de la ligne du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1603"/>
+        <location filename="../ViewManager/ViewManager.py" line="1625"/>
         <source>Move to start of display line</source>
         <translation>Déplacement au début de la ligne courante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1620"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Move to end of document line</source>
         <translation>Déplacement à la fin de la ligne du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1628"/>
+        <location filename="../ViewManager/ViewManager.py" line="1650"/>
         <source>Meta+E</source>
         <translation>Meta+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1696"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Meta+V</source>
         <translation>Meta+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1702"/>
+        <location filename="../ViewManager/ViewManager.py" line="1724"/>
         <source>Move to start of document</source>
         <translation>Déplacement au début du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1719"/>
+        <location filename="../ViewManager/ViewManager.py" line="1741"/>
         <source>Move to end of document</source>
         <translation>Déplacement à la fin du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1764"/>
+        <location filename="../ViewManager/ViewManager.py" line="1786"/>
         <source>Meta+Shift+B</source>
         <translation>Meta+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1779"/>
+        <location filename="../ViewManager/ViewManager.py" line="1801"/>
         <source>Meta+Shift+F</source>
         <translation>Meta+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1794"/>
+        <location filename="../ViewManager/ViewManager.py" line="1816"/>
         <source>Meta+Shift+P</source>
         <translation>Meta+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1809"/>
+        <location filename="../ViewManager/ViewManager.py" line="1831"/>
         <source>Meta+Shift+N</source>
         <translation>Meta+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1877"/>
+        <location filename="../ViewManager/ViewManager.py" line="1899"/>
         <source>Extend selection to first visible character in document line</source>
         <translation>Extension de la sélection au premier caractère visible de la ligne du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1895"/>
+        <location filename="../ViewManager/ViewManager.py" line="1917"/>
         <source>Extend selection to end of document line</source>
         <translation>Extension de la sélection à la fin de la ligne du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1903"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Meta+Shift+E</source>
         <translation>Meta+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1960"/>
+        <location filename="../ViewManager/ViewManager.py" line="1982"/>
         <source>Meta+Shift+V</source>
         <translation>Meta+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1966"/>
+        <location filename="../ViewManager/ViewManager.py" line="1988"/>
         <source>Extend selection to start of document</source>
         <translation>Extension de la sélection à la fin du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1974"/>
+        <location filename="../ViewManager/ViewManager.py" line="1996"/>
         <source>Ctrl+Shift+Up</source>
         <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1983"/>
+        <location filename="../ViewManager/ViewManager.py" line="2005"/>
         <source>Extend selection to end of document</source>
         <translation>Extension de la sélection à la fin du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1991"/>
+        <location filename="../ViewManager/ViewManager.py" line="2013"/>
         <source>Ctrl+Shift+Down</source>
         <translation>Ctrl+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2009"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Meta+H</source>
         <translation>Meta+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2018"/>
+        <location filename="../ViewManager/ViewManager.py" line="2040"/>
         <source>Delete previous character if not at start of line</source>
         <translation>Suppression du caractère précédent sauf en début de ligne</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2039"/>
+        <location filename="../ViewManager/ViewManager.py" line="2061"/>
         <source>Meta+D</source>
         <translation>Meta+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2083"/>
+        <location filename="../ViewManager/ViewManager.py" line="2105"/>
         <source>Meta+K</source>
         <translation>Meta+K</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2192"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <source>Move to end of display line</source>
         <translation>Déplacement à la fin de la ligne affichée</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2209"/>
+        <location filename="../ViewManager/ViewManager.py" line="2231"/>
         <source>Extend selection to end of display line</source>
         <translation>Extension de la sélection à la fin de la ligne affichée</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2251"/>
+        <location filename="../ViewManager/ViewManager.py" line="2273"/>
         <source>Meta+Alt+Shift+N</source>
         <translation>Meta+Alt+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2266"/>
+        <location filename="../ViewManager/ViewManager.py" line="2288"/>
         <source>Meta+Alt+Shift+P</source>
         <translation>Meta+Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2284"/>
+        <location filename="../ViewManager/ViewManager.py" line="2306"/>
         <source>Meta+Alt+Shift+B</source>
         <translation>Meta+Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2302"/>
+        <location filename="../ViewManager/ViewManager.py" line="2324"/>
         <source>Meta+Alt+Shift+F</source>
         <translation>Meta+Alt+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2308"/>
+        <location filename="../ViewManager/ViewManager.py" line="2330"/>
         <source>Extend rectangular selection to first visible character in document line</source>
         <translation>Extension de la sélection rectangulaire au premier caractère visible du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2327"/>
+        <location filename="../ViewManager/ViewManager.py" line="2349"/>
         <source>Extend rectangular selection to end of document line</source>
         <translation>Extension de la sélection rectangulaire à la fin de la ligne du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2337"/>
+        <location filename="../ViewManager/ViewManager.py" line="2359"/>
         <source>Meta+Alt+Shift+E</source>
         <translation>Meta+Alt+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2340"/>
+        <location filename="../ViewManager/ViewManager.py" line="2362"/>
         <source>Alt+Shift+End</source>
         <translation>Alt+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2361"/>
+        <location filename="../ViewManager/ViewManager.py" line="2383"/>
         <source>Alt+Shift+PgDown</source>
         <translation>Alt+Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2373"/>
+        <location filename="../ViewManager/ViewManager.py" line="2395"/>
         <source>Meta+Alt+Shift+V</source>
         <translation>Meta+Alt+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2393"/>
+        <location filename="../ViewManager/ViewManager.py" line="2415"/>
         <source>Scroll to start of document</source>
         <translation>Défilement au début du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2408"/>
+        <location filename="../ViewManager/ViewManager.py" line="2430"/>
         <source>Scroll to end of document</source>
         <translation>Défilement à la fin du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2423"/>
+        <location filename="../ViewManager/ViewManager.py" line="2445"/>
         <source>Scroll vertically to center current line</source>
         <translation>Défilement vertical de façon à centrer la ligne courante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2431"/>
-        <source>Meta+L</source>
-        <translation>Meta+L</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2438"/>
-        <source>Move to end of next word</source>
-        <translation>Déplacement à la fin du mot suivant</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2453"/>
+        <source>Meta+L</source>
+        <translation>Meta+L</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2460"/>
+        <source>Move to end of next word</source>
+        <translation>Déplacement à la fin du mot suivant</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2475"/>
         <source>Extend selection to end of next word</source>
         <translation>Extension de la séleciton à la fin du mot suivant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2469"/>
+        <location filename="../ViewManager/ViewManager.py" line="2491"/>
         <source>Move to end of previous word</source>
         <translation>Déplacement à la fin du mot précédent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2481"/>
+        <location filename="../ViewManager/ViewManager.py" line="2503"/>
         <source>Extend selection to end of previous word</source>
         <translation>Extension de la séleciton à la fin du mot précédent</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2493"/>
+        <location filename="../ViewManager/ViewManager.py" line="2515"/>
         <source>Move to start of document line</source>
         <translation>Déplacement au début de la ligne du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2501"/>
+        <location filename="../ViewManager/ViewManager.py" line="2523"/>
         <source>Meta+A</source>
         <translation>Meta+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2508"/>
+        <location filename="../ViewManager/ViewManager.py" line="2530"/>
         <source>Extend selection to start of document line</source>
         <translation>Extension de la sélection au début de la ligne du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2519"/>
+        <location filename="../ViewManager/ViewManager.py" line="2541"/>
         <source>Meta+Shift+A</source>
         <translation>Meta+Shift+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2526"/>
+        <location filename="../ViewManager/ViewManager.py" line="2548"/>
         <source>Extend rectangular selection to start of document line</source>
         <translation>Extension de la sélection rectangulaire au début de la ligne du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2536"/>
+        <location filename="../ViewManager/ViewManager.py" line="2558"/>
         <source>Meta+Alt+Shift+A</source>
         <translation>Meta+Alt+Shift+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2544"/>
+        <location filename="../ViewManager/ViewManager.py" line="2566"/>
         <source>Extend selection to start of display line</source>
         <translation>Extension de la sélection au début de la ligne affichée</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2563"/>
+        <location filename="../ViewManager/ViewManager.py" line="2585"/>
         <source>Move to start of display or document line</source>
         <translation>Déplacement au début de la ligne affichée ou de la ligne du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2577"/>
+        <location filename="../ViewManager/ViewManager.py" line="2599"/>
         <source>Extend selection to start of display or document line</source>
         <translation>Extension de la sélection au début de la ligne affichée ou de la ligne du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2592"/>
+        <location filename="../ViewManager/ViewManager.py" line="2614"/>
         <source>Move to first visible character in display or document line</source>
         <translation>Déplacement vers le premier caractère visible de la ligne affichée ou de la ligne do document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2609"/>
+        <location filename="../ViewManager/ViewManager.py" line="2631"/>
         <source>Extend selection to first visible character in display or document line</source>
         <translation>Extension de la sélection au premier caractère visible du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2626"/>
+        <location filename="../ViewManager/ViewManager.py" line="2648"/>
         <source>Move to end of display or document line</source>
         <translation>Déplacement à la de la ligne affichée ou de la ligne du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2640"/>
+        <location filename="../ViewManager/ViewManager.py" line="2662"/>
         <source>Extend selection to end of display or document line</source>
         <translation>Extension de la sélection à la fint de la ligne affichée ou de la ligne du document</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2655"/>
+        <location filename="../ViewManager/ViewManager.py" line="2677"/>
         <source>Stuttered move up one page</source>
         <translation>Déplacement étagé d&apos;une page vers le haut</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2667"/>
+        <location filename="../ViewManager/ViewManager.py" line="2689"/>
         <source>Stuttered extend selection up one page</source>
         <translation>Extension de la sélection étagée d&apos;une page vers le haut</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2680"/>
+        <location filename="../ViewManager/ViewManager.py" line="2702"/>
         <source>Stuttered move down one page</source>
         <translation>Déplacement étagé d&apos;une page vers le bas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2692"/>
+        <location filename="../ViewManager/ViewManager.py" line="2714"/>
         <source>Stuttered extend selection down one page</source>
         <translation>Extension de la sélection étagée d&apos;une page vers le bas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2705"/>
+        <location filename="../ViewManager/ViewManager.py" line="2727"/>
         <source>Delete right to end of next word</source>
         <translation>Supprimer jusqu&apos;à la fin du mot à doite</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2713"/>
+        <location filename="../ViewManager/ViewManager.py" line="2735"/>
         <source>Alt+Del</source>
         <translation>Alt+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2720"/>
+        <location filename="../ViewManager/ViewManager.py" line="2742"/>
         <source>Move selected lines up one line</source>
         <translation>Déplacement des lignes sélectionnées d&apos;une ligne vers le haut</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2732"/>
+        <location filename="../ViewManager/ViewManager.py" line="2754"/>
         <source>Move selected lines down one line</source>
         <translation>Déplacement des lignes sélectionnées d&apos;une ligne vers le bas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2346"/>
+        <location filename="../ViewManager/ViewManager.py" line="2368"/>
         <source>Alt+Shift+PgUp</source>
         <translation>Alt+Shift+PgUp</translation>
     </message>
@@ -84230,39 +84225,39 @@
         <translation>&lt;b&gt;Basculer commentaire&lt;/b&gt;&lt;p&gt;Si la ligne courante ne commence pas par un signe de commentaire, la ligne courante ou la séléciton est commentée. Si c&apos;est déjà commentée, ce block de commentaires ne sera plus commenté. &lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Zoom reset</source>
         <translation>Annulation du zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Zoom &amp;reset</source>
         <translation>Annulation du &amp;zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3533"/>
+        <location filename="../ViewManager/ViewManager.py" line="3557"/>
         <source>Reset the zoom of the text</source>
         <translation>Annulation du zoom du texte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3535"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Annulation du zoom&lt;/b&gt;&lt;p&gt;Annulation du zoom du texte. Ceci met le facteur de zoom à 100%. &lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation>Zoom avant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation>Zoom arrière</translation>
@@ -84273,191 +84268,191 @@
         <translation>&amp;Tout enregistrer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <location filename="../ViewManager/ViewManager.py" line="4270"/>
         <source>Next Change</source>
         <translation>Modification suivante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4240"/>
-        <source>&amp;Next Change</source>
-        <translation>Modificatio&amp;n suivante</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4248"/>
-        <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Modification suivante&lt;/b&gt;&lt;p&gt;Aller à la ligne suivante ayant un marquer de modification sur l&apos;éditeur courant. &lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <source>&amp;Next Change</source>
+        <translation>Modificatio&amp;n suivante</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4272"/>
+        <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Modification suivante&lt;/b&gt;&lt;p&gt;Aller à la ligne suivante ayant un marquer de modification sur l&apos;éditeur courant. &lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4288"/>
         <source>Previous Change</source>
         <translation>Modification précédente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4257"/>
+        <location filename="../ViewManager/ViewManager.py" line="4281"/>
         <source>&amp;Previous Change</source>
         <translation>Modification &amp;précédente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4266"/>
+        <location filename="../ViewManager/ViewManager.py" line="4290"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Modification précédente &lt;/b&gt;&lt;p&gt;Aller à la ligne précédente ayant un marqueur de modification dans l&apos;éditeur courant.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2955"/>
+        <location filename="../ViewManager/ViewManager.py" line="2979"/>
         <source>Search current word forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2955"/>
+        <location filename="../ViewManager/ViewManager.py" line="2979"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation>Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2966"/>
+        <location filename="../ViewManager/ViewManager.py" line="2990"/>
         <source>Search next occurrence of the current word</source>
         <translation>Chercher l&apos;occurrence suivante du mot courant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2969"/>
+        <location filename="../ViewManager/ViewManager.py" line="2993"/>
         <source>&lt;b&gt;Search current word forward&lt;/b&gt;&lt;p&gt;Search the next occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2978"/>
+        <location filename="../ViewManager/ViewManager.py" line="3002"/>
         <source>Search current word backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2978"/>
+        <location filename="../ViewManager/ViewManager.py" line="3002"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation>Ctrl+,</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2989"/>
+        <location filename="../ViewManager/ViewManager.py" line="3013"/>
         <source>Search previous occurrence of the current word</source>
         <translation>Chercher l&apos;occurence précédente du mot courant</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2992"/>
+        <location filename="../ViewManager/ViewManager.py" line="3016"/>
         <source>&lt;b&gt;Search current word backward&lt;/b&gt;&lt;p&gt;Search the previous occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Search in Open Files</source>
         <translation>Chercher dans les fichiers ouverts</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Search in Open Files...</source>
         <translation>Chercher dans les fichiers ouverts...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Meta+Ctrl+Alt+F</source>
         <comment>Search|Search Open Files</comment>
         <translation>Meta+Ctrl+Alt+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3310"/>
+        <location filename="../ViewManager/ViewManager.py" line="3334"/>
         <source>Search for a text in open files</source>
         <translation>Chercher un texte dans les fichiers ouverts</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3312"/>
+        <location filename="../ViewManager/ViewManager.py" line="3336"/>
         <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
         <source>Replace in Open Files</source>
         <translation>Remplacer dans les fichiers ouverts</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
         <source>Replace in Open Files...</source>
         <translation>Remplacer dans les fichiers ouverts...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
         <source>Meta+Ctrl+Alt+R</source>
         <comment>Search|Replace in Open Files</comment>
         <translation>Meta+Ctrl+Alt+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3332"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Search for a text in open files and replace it</source>
         <translation>Chercher un texte dans les fichiers ouverts et le remplacer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3334"/>
+        <location filename="../ViewManager/ViewManager.py" line="3358"/>
         <source>&lt;b&gt;Replace in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Check spelling</source>
         <translation>Vérification orthographique</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Check &amp;spelling...</source>
         <translation>&amp;Vérification orthographique...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4399"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4424"/>
+        <location filename="../ViewManager/ViewManager.py" line="4448"/>
         <source>Edit Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4426"/>
+        <location filename="../ViewManager/ViewManager.py" line="4450"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4429"/>
+        <location filename="../ViewManager/ViewManager.py" line="4453"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4434"/>
+        <location filename="../ViewManager/ViewManager.py" line="4458"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4437"/>
+        <location filename="../ViewManager/ViewManager.py" line="4461"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6630"/>
+        <location filename="../ViewManager/ViewManager.py" line="6654"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6589"/>
+        <location filename="../ViewManager/ViewManager.py" line="6613"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6607"/>
+        <location filename="../ViewManager/ViewManager.py" line="6631"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6618"/>
+        <location filename="../ViewManager/ViewManager.py" line="6642"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6630"/>
+        <location filename="../ViewManager/ViewManager.py" line="6654"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
@@ -84483,62 +84478,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4953"/>
+        <location filename="../ViewManager/ViewManager.py" line="4977"/>
         <source>Language: {0}</source>
         <translation>Langage : {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4960"/>
+        <location filename="../ViewManager/ViewManager.py" line="4984"/>
         <source>EOL Mode: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3641"/>
+        <location filename="../ViewManager/ViewManager.py" line="3665"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3641"/>
-        <source>New &amp;Document View</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3646"/>
-        <source>Open a new view of the current document</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3648"/>
-        <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3658"/>
-        <source>New Document View (with new split)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3665"/>
+        <source>New &amp;Document View</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3670"/>
+        <source>Open a new view of the current document</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3672"/>
+        <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3682"/>
+        <source>New Document View (with new split)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3689"/>
         <source>Open a new view of the current document in a new split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3668"/>
+        <location filename="../ViewManager/ViewManager.py" line="3692"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4124"/>
+        <location filename="../ViewManager/ViewManager.py" line="4148"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4143"/>
+        <location filename="../ViewManager/ViewManager.py" line="4167"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4161"/>
+        <location filename="../ViewManager/ViewManager.py" line="4185"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -84593,65 +84588,65 @@
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3020"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Replace and Search</source>
         <translation>Remplacer et chercher</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3020"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Meta+R</source>
         <comment>Search|Replace and Search</comment>
         <translation>Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3030"/>
+        <location filename="../ViewManager/ViewManager.py" line="3054"/>
         <source>Replace the found text and search the next occurrence</source>
         <translation>Remplacer le texte trouvé et chercher l&apos;occurrence suivante</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3033"/>
+        <location filename="../ViewManager/ViewManager.py" line="3057"/>
         <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3044"/>
+        <location filename="../ViewManager/ViewManager.py" line="3068"/>
         <source>Replace Occurrence</source>
         <translation>Remplacer occurrence</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3044"/>
+        <location filename="../ViewManager/ViewManager.py" line="3068"/>
         <source>Ctrl+Meta+R</source>
         <comment>Search|Replace Occurrence</comment>
         <translation>Ctrl+Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3054"/>
+        <location filename="../ViewManager/ViewManager.py" line="3078"/>
         <source>Replace the found text</source>
         <translation>Remplacer le texte trouvé</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3056"/>
+        <location filename="../ViewManager/ViewManager.py" line="3080"/>
         <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3066"/>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
         <source>Replace All</source>
         <translation>Tout remplacer</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3066"/>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
         <source>Shift+Meta+R</source>
         <comment>Search|Replace All</comment>
         <translation>Shift+Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3076"/>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <source>Replace search text occurrences</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3078"/>
+        <location filename="../ViewManager/ViewManager.py" line="3102"/>
         <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -84677,57 +84672,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <location filename="../ViewManager/ViewManager.py" line="3638"/>
         <source>Clear all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3610"/>
+        <location filename="../ViewManager/ViewManager.py" line="3634"/>
         <source>Clear &amp;all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3616"/>
+        <location filename="../ViewManager/ViewManager.py" line="3640"/>
         <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Reverse selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Meta+Alt+R</source>
         <translation>Meta+Alt+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3774"/>
-        <source>Python AST Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3779"/>
-        <source>Show the AST for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3781"/>
-        <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3791"/>
-        <source>Python Disassembly Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Python AST Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3803"/>
+        <source>Show the AST for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3805"/>
+        <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3815"/>
+        <source>Python Disassembly Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
         <source>Show the Disassembly for the current Python file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3800"/>
+        <location filename="../ViewManager/ViewManager.py" line="3824"/>
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -84746,6 +84741,27 @@
         <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1468"/>
+        <source>Generate Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1468"/>
+        <source>Ctrl+Alt+D</source>
+        <comment>Edit|Generate Docstring</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1475"/>
+        <source>Generate a docstring for the current function/method</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1478"/>
+        <source>&lt;b&gt;Generate Docstring&lt;/b&gt;&lt;p&gt;Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
--- a/eric6/i18n/eric6_it.ts	Fri Jan 22 16:55:43 2021 +0100
+++ b/eric6/i18n/eric6_it.ts	Sat Jan 23 12:02:52 2021 +0100
@@ -11611,17 +11611,17 @@
         <translation>Commenti nel riquadro</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="828"/>
+        <location filename="../QScintilla/Editor.py" line="832"/>
         <source>Select to brace</source>
         <translation>Seleziona per parentesizzare</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="830"/>
+        <location filename="../QScintilla/Editor.py" line="834"/>
         <source>Select all</source>
         <translation>Seleziona tutti</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="831"/>
+        <location filename="../QScintilla/Editor.py" line="835"/>
         <source>Deselect all</source>
         <translation>Deseleziona tutti</translation>
     </message>
@@ -12171,7 +12171,7 @@
         <translation>Controllo sillabazione...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="839"/>
+        <location filename="../QScintilla/Editor.py" line="843"/>
         <source>Check spelling of selection...</source>
         <translation>Controllo sillabazione della selezione...</translation>
     </message>
@@ -12186,7 +12186,7 @@
         <translation>Ignora tutto</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="843"/>
+        <location filename="../QScintilla/Editor.py" line="847"/>
         <source>Remove from dictionary</source>
         <translation>Rimuovi dal dizionario</translation>
     </message>
@@ -12481,12 +12481,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="849"/>
-        <source>Insert Docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8715"/>
+        <location filename="../QScintilla/Editor.py" line="8726"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
@@ -84680,7 +84675,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2776"/>
+        <location filename="../ViewManager/ViewManager.py" line="2798"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
@@ -84695,977 +84690,977 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Move left one character</source>
         <translation>Muovi a sinistra di 1 carattere</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Left</source>
         <translation>Sinistra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1494"/>
+        <location filename="../ViewManager/ViewManager.py" line="1516"/>
         <source>Move right one character</source>
         <translation>Muovi a destra di 1 carattere</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1494"/>
+        <location filename="../ViewManager/ViewManager.py" line="1516"/>
         <source>Right</source>
         <translation>Destra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1508"/>
+        <location filename="../ViewManager/ViewManager.py" line="1530"/>
         <source>Move up one line</source>
         <translation>Muovi in alto di una riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1508"/>
+        <location filename="../ViewManager/ViewManager.py" line="1530"/>
         <source>Up</source>
         <translation>Su</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1520"/>
+        <location filename="../ViewManager/ViewManager.py" line="1542"/>
         <source>Move down one line</source>
         <translation>Muovi in basso di una riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1520"/>
+        <location filename="../ViewManager/ViewManager.py" line="1542"/>
         <source>Down</source>
         <translation>Giù</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1532"/>
+        <location filename="../ViewManager/ViewManager.py" line="1554"/>
         <source>Move left one word part</source>
         <translation>Muovi a sinistra di una parte di parola</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1566"/>
+        <location filename="../ViewManager/ViewManager.py" line="1588"/>
         <source>Alt+Left</source>
         <translation>Alt+Sinistra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1546"/>
+        <location filename="../ViewManager/ViewManager.py" line="1568"/>
         <source>Move right one word part</source>
         <translation>Muovi a destra di una parte di parola</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2446"/>
+        <location filename="../ViewManager/ViewManager.py" line="2468"/>
         <source>Alt+Right</source>
         <translation>Alt+Destra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1560"/>
+        <location filename="../ViewManager/ViewManager.py" line="1582"/>
         <source>Move left one word</source>
         <translation>Muovi a sinistra una parola</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1611"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Ctrl+Left</source>
         <translation>Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1575"/>
+        <location filename="../ViewManager/ViewManager.py" line="1597"/>
         <source>Move right one word</source>
         <translation>Muovi a destra una parola</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2200"/>
+        <location filename="../ViewManager/ViewManager.py" line="2222"/>
         <source>Ctrl+Right</source>
         <translation>Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2401"/>
+        <location filename="../ViewManager/ViewManager.py" line="2423"/>
         <source>Home</source>
         <translation>Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1614"/>
+        <location filename="../ViewManager/ViewManager.py" line="1636"/>
         <source>Alt+Home</source>
         <translation>Alt+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2416"/>
+        <location filename="../ViewManager/ViewManager.py" line="2438"/>
         <source>End</source>
         <translation>Fine</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1637"/>
+        <location filename="../ViewManager/ViewManager.py" line="1659"/>
         <source>Scroll view down one line</source>
         <translation>Scrolla la vista in basso di una riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1749"/>
         <source>Ctrl+Down</source>
         <translation>Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1649"/>
+        <location filename="../ViewManager/ViewManager.py" line="1671"/>
         <source>Scroll view up one line</source>
         <translation>Scrolla la vista in alto di una riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1710"/>
+        <location filename="../ViewManager/ViewManager.py" line="1732"/>
         <source>Ctrl+Up</source>
         <translation>Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1660"/>
+        <location filename="../ViewManager/ViewManager.py" line="1682"/>
         <source>Move up one paragraph</source>
         <translation>Muovi in alto di un paragrafo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1660"/>
+        <location filename="../ViewManager/ViewManager.py" line="1682"/>
         <source>Alt+Up</source>
         <translation>Alt+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1669"/>
+        <location filename="../ViewManager/ViewManager.py" line="1691"/>
         <source>Move down one paragraph</source>
         <translation>Muovi in basso di un paragrafo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1669"/>
+        <location filename="../ViewManager/ViewManager.py" line="1691"/>
         <source>Alt+Down</source>
         <translation>Alt+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1681"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>Move up one page</source>
         <translation>Muovi in alto di una pagina</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1681"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>PgUp</source>
         <translation>PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1690"/>
+        <location filename="../ViewManager/ViewManager.py" line="1712"/>
         <source>Move down one page</source>
         <translation>Muovi in basso di una pagina</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1690"/>
+        <location filename="../ViewManager/ViewManager.py" line="1712"/>
         <source>PgDown</source>
         <translation>PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1713"/>
+        <location filename="../ViewManager/ViewManager.py" line="1735"/>
         <source>Ctrl+Home</source>
         <translation>Ctrl+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1730"/>
+        <location filename="../ViewManager/ViewManager.py" line="1752"/>
         <source>Ctrl+End</source>
         <translation>Ctrl+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Indent one level</source>
         <translation>Indenta un livello</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Tab</source>
         <translation>Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1745"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Unindent one level</source>
         <translation>Deindenta di un livello</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1745"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Shift+Tab</source>
         <translation>Shift+Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1755"/>
+        <location filename="../ViewManager/ViewManager.py" line="1777"/>
         <source>Extend selection left one character</source>
         <translation>Estendi la selezione a sinistra di un carattere</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1755"/>
+        <location filename="../ViewManager/ViewManager.py" line="1777"/>
         <source>Shift+Left</source>
         <translation>Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1770"/>
+        <location filename="../ViewManager/ViewManager.py" line="1792"/>
         <source>Extend selection right one character</source>
         <translation>Estendi la selezione a destra di un carattere</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1770"/>
+        <location filename="../ViewManager/ViewManager.py" line="1792"/>
         <source>Shift+Right</source>
         <translation>Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1785"/>
+        <location filename="../ViewManager/ViewManager.py" line="1807"/>
         <source>Extend selection up one line</source>
         <translation>Estendi selezione in alto di una riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1785"/>
+        <location filename="../ViewManager/ViewManager.py" line="1807"/>
         <source>Shift+Up</source>
         <translation>Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1800"/>
+        <location filename="../ViewManager/ViewManager.py" line="1822"/>
         <source>Extend selection down one line</source>
         <translation>Estendi selezione in basso di una riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1800"/>
+        <location filename="../ViewManager/ViewManager.py" line="1822"/>
         <source>Shift+Down</source>
         <translation>Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1815"/>
+        <location filename="../ViewManager/ViewManager.py" line="1837"/>
         <source>Extend selection left one word part</source>
         <translation>Estendi la selezione a sinistra di una parte di parola</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="1873"/>
+        <source>Alt+Shift+Left</source>
+        <translation>Alt+Shift+Left</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="1851"/>
-        <source>Alt+Shift+Left</source>
-        <translation>Alt+Shift+Left</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1829"/>
         <source>Extend selection right one word part</source>
         <translation>Estendi la selezione a destra di una parte di parola</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2461"/>
+        <location filename="../ViewManager/ViewManager.py" line="2483"/>
         <source>Alt+Shift+Right</source>
         <translation>Alt+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1843"/>
+        <location filename="../ViewManager/ViewManager.py" line="1865"/>
         <source>Extend selection left one word</source>
         <translation>Estendi la selezione a sinistra di una parola</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2555"/>
+        <location filename="../ViewManager/ViewManager.py" line="2577"/>
         <source>Ctrl+Shift+Left</source>
         <translation>Ctrl+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1860"/>
+        <location filename="../ViewManager/ViewManager.py" line="1882"/>
         <source>Extend selection right one word</source>
         <translation>Estendi la selezione a destra di una parola</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2217"/>
+        <location filename="../ViewManager/ViewManager.py" line="2239"/>
         <source>Ctrl+Shift+Right</source>
         <translation>Ctrl+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1889"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Shift+Home</source>
         <translation>Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2321"/>
+        <location filename="../ViewManager/ViewManager.py" line="2343"/>
         <source>Alt+Shift+Home</source>
         <translation>Alt+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1906"/>
+        <location filename="../ViewManager/ViewManager.py" line="1928"/>
         <source>Shift+End</source>
         <translation>Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1912"/>
+        <location filename="../ViewManager/ViewManager.py" line="1934"/>
         <source>Extend selection up one paragraph</source>
         <translation>Estendi selezione in alto di un paragrafo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1912"/>
+        <location filename="../ViewManager/ViewManager.py" line="1934"/>
         <source>Alt+Shift+Up</source>
         <translation>Alt+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1925"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Extend selection down one paragraph</source>
         <translation>Estendi selezione in basso di un paragrafo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1925"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Alt+Shift+Down</source>
         <translation>Alt+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Extend selection up one page</source>
         <translation>Estendi selezione in alto di una pagina</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Shift+PgUp</source>
         <translation>Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1950"/>
+        <location filename="../ViewManager/ViewManager.py" line="1972"/>
         <source>Extend selection down one page</source>
         <translation>Estendi selezione in basso di una pagina</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1950"/>
+        <location filename="../ViewManager/ViewManager.py" line="1972"/>
         <source>Shift+PgDown</source>
         <translation>Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1977"/>
+        <location filename="../ViewManager/ViewManager.py" line="1999"/>
         <source>Ctrl+Shift+Home</source>
         <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2016"/>
         <source>Ctrl+Shift+End</source>
         <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2000"/>
+        <location filename="../ViewManager/ViewManager.py" line="2022"/>
         <source>Delete previous character</source>
         <translation>Cancella caratteri precedenti</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2000"/>
+        <location filename="../ViewManager/ViewManager.py" line="2022"/>
         <source>Backspace</source>
         <translation>Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2031"/>
+        <location filename="../ViewManager/ViewManager.py" line="2053"/>
         <source>Delete current character</source>
         <translation>Cancella il carattere corrente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2031"/>
+        <location filename="../ViewManager/ViewManager.py" line="2053"/>
         <source>Del</source>
         <translation>Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2045"/>
+        <location filename="../ViewManager/ViewManager.py" line="2067"/>
         <source>Delete word to left</source>
         <translation>Cancella parola a sinistra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2045"/>
+        <location filename="../ViewManager/ViewManager.py" line="2067"/>
         <source>Ctrl+Backspace</source>
         <translation>Ctrl+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2056"/>
+        <location filename="../ViewManager/ViewManager.py" line="2078"/>
         <source>Delete word to right</source>
         <translation>Cancella parola a destra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2056"/>
+        <location filename="../ViewManager/ViewManager.py" line="2078"/>
         <source>Ctrl+Del</source>
         <translation>Ctrl+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2066"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Delete line to left</source>
         <translation>Cancella riga a sinistra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2066"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation>Ctrl+Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2077"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Delete line to right</source>
         <translation>Cancella riga a destra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2086"/>
+        <location filename="../ViewManager/ViewManager.py" line="2108"/>
         <source>Ctrl+Shift+Del</source>
         <translation>Ctrl+Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Insert new line</source>
         <translation>Inserisci riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Return</source>
         <translation>Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2115"/>
-        <source>Delete current line</source>
-        <translation>Cancella riga</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2115"/>
-        <source>Ctrl+Shift+L</source>
-        <translation>Ctrl+Shift+L</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2126"/>
-        <source>Duplicate current line</source>
-        <translation>Duplica riga</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2126"/>
-        <source>Ctrl+D</source>
-        <translation>Ctrl+D</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2137"/>
-        <source>Swap current and previous lines</source>
-        <translation>Scambia la riga con quella precedente</translation>
+        <source>Delete current line</source>
+        <translation>Cancella riga</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="2137"/>
+        <source>Ctrl+Shift+L</source>
+        <translation>Ctrl+Shift+L</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <source>Duplicate current line</source>
+        <translation>Duplica riga</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <source>Ctrl+D</source>
+        <translation>Ctrl+D</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2159"/>
+        <source>Swap current and previous lines</source>
+        <translation>Scambia la riga con quella precedente</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2159"/>
         <source>Ctrl+T</source>
         <translation>Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2160"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Cut current line</source>
         <translation>Taglia riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2160"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Alt+Shift+L</source>
         <translation>Alt+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2170"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Copy current line</source>
         <translation>Copia riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2170"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Ctrl+Shift+T</source>
         <translation>Ctrl+Shift+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
+        <location filename="../ViewManager/ViewManager.py" line="2203"/>
         <source>Toggle insert/overtype</source>
         <translation>Scambia inserisci/sovrascrivi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
-        <source>Ins</source>
-        <translation>Ins</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2745"/>
-        <source>Convert selection to lower case</source>
-        <translation>Converti selezione in minuscolo</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2745"/>
-        <source>Alt+Shift+U</source>
-        <translation>Alt+Shift+U</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2757"/>
-        <source>Convert selection to upper case</source>
-        <translation>Converti selezione in maiuscolo</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2757"/>
-        <source>Ctrl+Shift+U</source>
-        <translation>Ctrl+Shift+U</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2203"/>
+        <source>Ins</source>
+        <translation>Ins</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2767"/>
+        <source>Convert selection to lower case</source>
+        <translation>Converti selezione in minuscolo</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2767"/>
+        <source>Alt+Shift+U</source>
+        <translation>Alt+Shift+U</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2779"/>
+        <source>Convert selection to upper case</source>
+        <translation>Converti selezione in maiuscolo</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2779"/>
+        <source>Ctrl+Shift+U</source>
+        <translation>Ctrl+Shift+U</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2225"/>
         <source>Alt+End</source>
         <translation>Alt+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2223"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <source>Formfeed</source>
         <translation>Formfeed</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2232"/>
+        <location filename="../ViewManager/ViewManager.py" line="2254"/>
         <source>Escape</source>
         <translation>Escape</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2232"/>
+        <location filename="../ViewManager/ViewManager.py" line="2254"/>
         <source>Esc</source>
         <translation>Esc</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2241"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Extend rectangular selection down one line</source>
         <translation>Estendi selezione rettagolare in basso di una riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2241"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Alt+Ctrl+Down</source>
         <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2257"/>
+        <location filename="../ViewManager/ViewManager.py" line="2279"/>
         <source>Extend rectangular selection up one line</source>
         <translation>Estendi selezione rettagolare in alto di una riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2257"/>
+        <location filename="../ViewManager/ViewManager.py" line="2279"/>
         <source>Alt+Ctrl+Up</source>
         <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2272"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Extend rectangular selection left one character</source>
         <translation>Estendi selezione rettagolare a sinistra di un carattere</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2272"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Alt+Ctrl+Left</source>
         <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2290"/>
+        <location filename="../ViewManager/ViewManager.py" line="2312"/>
         <source>Extend rectangular selection right one character</source>
         <translation>Estendi selezione rettagolare a destra di un carattere</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2290"/>
+        <location filename="../ViewManager/ViewManager.py" line="2312"/>
         <source>Alt+Ctrl+Right</source>
         <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2346"/>
+        <location filename="../ViewManager/ViewManager.py" line="2368"/>
         <source>Extend rectangular selection up one page</source>
         <translation>Estendi selezione rettagolare in alto di una pagina</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2361"/>
+        <location filename="../ViewManager/ViewManager.py" line="2383"/>
         <source>Extend rectangular selection down one page</source>
         <translation>Estendi selezione rettagolare in basso di una pagina</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3447"/>
+        <location filename="../ViewManager/ViewManager.py" line="3471"/>
         <source>Search</source>
         <translation>Ricerca</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2875"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>&amp;Search...</source>
         <translation>&amp;Ricerca...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2883"/>
+        <location filename="../ViewManager/ViewManager.py" line="2907"/>
         <source>Search for a text</source>
         <translation>Cerca per un testo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2885"/>
+        <location filename="../ViewManager/ViewManager.py" line="2909"/>
         <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cerca&lt;/b&gt;&lt;p&gt;Cerca per del testo nell&apos;editor corrente. Viene mostrato in dialogo per inserire il testo cercato e le opzioni per la ricerca.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>Replace</source>
         <translation>Rimpiazza</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>&amp;Replace...</source>
         <translation>&amp;Rimpiazza...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3008"/>
+        <location filename="../ViewManager/ViewManager.py" line="3032"/>
         <source>Replace some text</source>
         <translation>Sostituisci del testo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3010"/>
+        <location filename="../ViewManager/ViewManager.py" line="3034"/>
         <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sostituisci&lt;/b&gt;&lt;p&gt;Cerca per del testo nell&apos;editor corrente e lo sostituisce. Viene mostrato in dialogo per inserire il testo cercato, il testo sostituto e le opzioni per la ricerca e la sostituzione.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3160"/>
+        <location filename="../ViewManager/ViewManager.py" line="3184"/>
         <source>Goto Line</source>
         <translation>Vai a riga</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <location filename="../ViewManager/ViewManager.py" line="3176"/>
         <source>&amp;Goto Line...</source>
         <translation>Vai a ri&amp;ga...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3162"/>
+        <location filename="../ViewManager/ViewManager.py" line="3186"/>
         <source>&lt;b&gt;Goto Line&lt;/b&gt;&lt;p&gt;Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vai a Riga&lt;/b&gt;&lt;p&gt;Va ad una specifica riga di testo nell&apos;editor corrente. Viene mostrato un dialogo per inserire il numero di riga&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <location filename="../ViewManager/ViewManager.py" line="3203"/>
         <source>Goto Brace</source>
         <translation>Vai alla parentesi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <location filename="../ViewManager/ViewManager.py" line="3195"/>
         <source>Goto &amp;Brace</source>
         <translation>Vai alla &amp;parentesi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3181"/>
+        <location filename="../ViewManager/ViewManager.py" line="3205"/>
         <source>&lt;b&gt;Goto Brace&lt;/b&gt;&lt;p&gt;Go to the matching brace in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vai alla parentesi&lt;/b&gt;&lt;p&gt;Va alla parentesi corrispondete nell&apos;editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Search in Files</source>
         <translation>Cerca nei file</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Search in &amp;Files...</source>
         <translation>Cerca nei &amp;file...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3267"/>
+        <location filename="../ViewManager/ViewManager.py" line="3291"/>
         <source>Search for a text in files</source>
         <translation>Cerca un testo nei file</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3269"/>
+        <location filename="../ViewManager/ViewManager.py" line="3293"/>
         <source>&lt;b&gt;Search in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Cerca nei file&lt;/b&gt;&lt;p&gt;Cerca per del testo nei file di un albero di directory o del progetto. Un dialogo viene mostrato per inserire il testo cercato e le opzioni per la ricerca e la visualizzazione del risultato.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom in</source>
         <translation>Ingrandisci</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom &amp;in</source>
         <translation>Ingrand&amp;isci</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3496"/>
+        <location filename="../ViewManager/ViewManager.py" line="3520"/>
         <source>Zoom in on the text</source>
         <translation>Ingrandisci nel testo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3498"/>
+        <location filename="../ViewManager/ViewManager.py" line="3522"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ingrandisci&lt;/b&gt;&lt;p&gt;Ingrandisci nel testo. Questo aumenta le dimensioni del testo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom out</source>
         <translation>Riduci</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom &amp;out</source>
         <translation>Rid&amp;uci</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3515"/>
+        <location filename="../ViewManager/ViewManager.py" line="3539"/>
         <source>Zoom out on the text</source>
         <translation>Riduci il testo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3517"/>
+        <location filename="../ViewManager/ViewManager.py" line="3541"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Riduci&lt;/b&gt;&lt;p&gt;Riduci nel testo. Questo diminuisce le dimensioni del testo.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>Zoom</source>
         <translation>Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>&amp;Zoom</source>
         <translation>&amp;Zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3552"/>
+        <location filename="../ViewManager/ViewManager.py" line="3576"/>
         <source>Zoom the text</source>
         <translation>Ingrandisci il testo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3554"/>
+        <location filename="../ViewManager/ViewManager.py" line="3578"/>
         <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Zoom&lt;/b&gt;&lt;o&gt;Zoom del testo. Apre un dialogo dove inserire la dimensione voluta.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3567"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Toggle all folds</source>
         <translation>Abilita/Disabilita tutti i raggruppamenti</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <location filename="../ViewManager/ViewManager.py" line="3587"/>
         <source>&amp;Toggle all folds</source>
         <translation type="unfinished">Abilita/Disabilita tutti i r&amp;aggruppamenti</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3569"/>
+        <location filename="../ViewManager/ViewManager.py" line="3593"/>
         <source>&lt;b&gt;Toggle all folds&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Abilita/Disabilita tutti i raggruppamenti&lt;/b&gt;&lt;p&gt;Abilita/Disabilita tutti i raggruppamenti dell&apos;editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3599"/>
+        <location filename="../ViewManager/ViewManager.py" line="3623"/>
         <source>Toggle current fold</source>
         <translation>Abilita/Disabilita il raggruppamento corrente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3595"/>
+        <location filename="../ViewManager/ViewManager.py" line="3619"/>
         <source>Toggle &amp;current fold</source>
         <translation>Abilita/Disabilita il raggruppamento &amp;corrente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3601"/>
+        <location filename="../ViewManager/ViewManager.py" line="3625"/>
         <source>&lt;b&gt;Toggle current fold&lt;/b&gt;&lt;p&gt;Toggle the folds of the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Abilita/Disabilita il raggruppamento corrente&lt;/b&gt;&lt;p&gt;Abilita/Disabilita il raggruppamento alla riga corrente dell&apos;editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3631"/>
+        <location filename="../ViewManager/ViewManager.py" line="3655"/>
         <source>Remove all highlights</source>
         <translation>Rimuovi tutti gli highlight</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3633"/>
+        <location filename="../ViewManager/ViewManager.py" line="3657"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rimuovi tutti gli highlight&lt;/b&gt;&lt;p&gt;Rimuovi tutti gli highlight da tutti gli editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3703"/>
         <source>Split view</source>
         <translation>Dividi vista</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3703"/>
         <source>&amp;Split view</source>
         <translation>Dividi vi&amp;sta</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3684"/>
+        <location filename="../ViewManager/ViewManager.py" line="3708"/>
         <source>Add a split to the view</source>
         <translation>Aggiungi un divisione alla vista</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3686"/>
+        <location filename="../ViewManager/ViewManager.py" line="3710"/>
         <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Dividi vista&lt;/b&gt;&lt;p&gt;Aggiungi un divisione alla vista.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3694"/>
+        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>Arrange horizontally</source>
         <translation>Sistema orizzontalmente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3694"/>
+        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>Arrange &amp;horizontally</source>
         <translation>Sistema o&amp;rizzontalmente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3698"/>
+        <location filename="../ViewManager/ViewManager.py" line="3722"/>
         <source>Arrange the splitted views horizontally</source>
         <translation>Sistema le finestre divise orizzontalmente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3700"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sistema orizzontalmente&lt;/b&gt;&lt;p&gt;Sistema le finestre divise orizzontalmente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3709"/>
+        <location filename="../ViewManager/ViewManager.py" line="3733"/>
         <source>Remove split</source>
         <translation>Rimuovi divisione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3709"/>
+        <location filename="../ViewManager/ViewManager.py" line="3733"/>
         <source>&amp;Remove split</source>
         <translation>&amp;Rimuovi divisione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3714"/>
+        <location filename="../ViewManager/ViewManager.py" line="3738"/>
         <source>Remove the current split</source>
         <translation>Rimuovi la divisione corrente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3716"/>
+        <location filename="../ViewManager/ViewManager.py" line="3740"/>
         <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Rimuovi divisione&lt;/b&gt;&lt;p&gt;Rimuovi la divisione corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3906"/>
-        <source>Start Macro Recording</source>
-        <translation>Avvia registrazione della macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3900"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation>Avvia regis&amp;trazione della macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3908"/>
-        <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Avvia registrazione della macro&lt;/b&gt;&lt;p&gt;Avvia la registrazione dei comandi dell&apos;editor in una nuova macro.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
-        <source>Stop Macro Recording</source>
-        <translation>Interrompi registrazione macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3916"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation>Interrom&amp;pi registrazione macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3922"/>
-        <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Interrompi registrazione macro&lt;/b&gt;&lt;p&gt;Interrompi la registrazione dei comandi dell&apos;editor in una nuova macro.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3934"/>
-        <source>Run Macro</source>
-        <translation>Esegui Macro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3930"/>
-        <source>&amp;Run Macro</source>
-        <translation>Esegui Mac&amp;ro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3936"/>
-        <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Esegui Macro&lt;/b&gt;&lt;p&gt;Esegui una macro precedentemente registrata.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3948"/>
-        <source>Delete Macro</source>
-        <translation>Cancella Macro</translation>
+        <source>Start Macro Recording</source>
+        <translation>Avvia registrazione della macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3924"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation>Avvia regis&amp;trazione della macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3932"/>
+        <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Avvia registrazione della macro&lt;/b&gt;&lt;p&gt;Avvia la registrazione dei comandi dell&apos;editor in una nuova macro.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3944"/>
-        <source>&amp;Delete Macro</source>
-        <translation>Canc&amp;ella Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3950"/>
-        <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Cancella Macro&lt;/b&gt;&lt;p&gt;Cancella una macro precedentemente registrata.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3962"/>
-        <source>Load Macro</source>
-        <translation>Carica Macro</translation>
+        <source>Stop Macro Recording</source>
+        <translation>Interrompi registrazione macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3940"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation>Interrom&amp;pi registrazione macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3946"/>
+        <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Interrompi registrazione macro&lt;/b&gt;&lt;p&gt;Interrompi la registrazione dei comandi dell&apos;editor in una nuova macro.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3958"/>
-        <source>&amp;Load Macro</source>
-        <translation>C&amp;arica Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3964"/>
-        <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Carica Macro&lt;/b&gt;&lt;p&gt;Carica una macro da un file.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3976"/>
-        <source>Save Macro</source>
-        <translation>Salva Macro</translation>
+        <source>Run Macro</source>
+        <translation>Esegui Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3954"/>
+        <source>&amp;Run Macro</source>
+        <translation>Esegui Mac&amp;ro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3960"/>
+        <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Esegui Macro&lt;/b&gt;&lt;p&gt;Esegui una macro precedentemente registrata.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3972"/>
+        <source>Delete Macro</source>
+        <translation>Cancella Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3968"/>
+        <source>&amp;Delete Macro</source>
+        <translation>Canc&amp;ella Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3974"/>
+        <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Cancella Macro&lt;/b&gt;&lt;p&gt;Cancella una macro precedentemente registrata.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3986"/>
+        <source>Load Macro</source>
+        <translation>Carica Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3982"/>
+        <source>&amp;Load Macro</source>
+        <translation>C&amp;arica Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3988"/>
+        <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Carica Macro&lt;/b&gt;&lt;p&gt;Carica una macro da un file.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4000"/>
+        <source>Save Macro</source>
+        <translation>Salva Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3996"/>
         <source>&amp;Save Macro</source>
         <translation>&amp;Salva Macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3978"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Salva Macro&lt;/b&gt;&lt;p&gt;Salva una macro precedentemente registrata.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4020"/>
+        <location filename="../ViewManager/ViewManager.py" line="4044"/>
         <source>Toggle Bookmark</source>
         <translation>Inverti bookmark</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
         <source>&amp;Toggle Bookmark</source>
         <translation>Inver&amp;ti bookmark</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4022"/>
+        <location filename="../ViewManager/ViewManager.py" line="4046"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Toggle bookmark&lt;/b&gt;&lt;p&gt;Attiva un bookmark sulla linea corrente dell&apos;editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4039"/>
+        <location filename="../ViewManager/ViewManager.py" line="4063"/>
         <source>Next Bookmark</source>
         <translation>Prossimo segnalibro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>&amp;Next Bookmark</source>
         <translation>Prossimo seg&amp;nalibro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4041"/>
+        <location filename="../ViewManager/ViewManager.py" line="4065"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Prossimo segnalibro&lt;/b&gt;&lt;p&gt;Vai al segnalibro seguente dell&apos;editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <location filename="../ViewManager/ViewManager.py" line="4081"/>
         <source>Previous Bookmark</source>
         <translation>Segnalibro precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <location filename="../ViewManager/ViewManager.py" line="4073"/>
         <source>&amp;Previous Bookmark</source>
         <translation>Segnalibro &amp;precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4059"/>
+        <location filename="../ViewManager/ViewManager.py" line="4083"/>
         <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Segnalibro precedente&lt;/b&gt;&lt;p&gt;Va al segnalibro precedente dell&apos;editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4074"/>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <source>Clear Bookmarks</source>
         <translation>Pulisci segnalibri</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4091"/>
         <source>&amp;Clear Bookmarks</source>
         <translation>Pulis&amp;ci segnalibri</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4076"/>
+        <location filename="../ViewManager/ViewManager.py" line="4100"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Pulisci Segnalibri&lt;/b&gt;&lt;p&gt;Pulisci i segnalibri di tutti gli editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4285"/>
+        <location filename="../ViewManager/ViewManager.py" line="4309"/>
         <source>&amp;Bookmarks</source>
         <translation>Segnali&amp;bri</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4527"/>
+        <location filename="../ViewManager/ViewManager.py" line="4551"/>
         <source>File Modified</source>
         <translation>File modificato</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5371"/>
+        <location filename="../ViewManager/ViewManager.py" line="5395"/>
         <source>&amp;Clear</source>
         <translation>Pulis&amp;ci</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5365"/>
+        <location filename="../ViewManager/ViewManager.py" line="5389"/>
         <source>&amp;Add</source>
         <translation>&amp;Aggiungi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5368"/>
+        <location filename="../ViewManager/ViewManager.py" line="5392"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Modifica...</translation>
     </message>
@@ -85720,32 +85715,32 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <location filename="../ViewManager/ViewManager.py" line="4114"/>
         <source>Goto Syntax Error</source>
         <translation>Vai all&apos;errore di sintassi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4084"/>
+        <location filename="../ViewManager/ViewManager.py" line="4108"/>
         <source>&amp;Goto Syntax Error</source>
         <translation>&amp;Vai all&apos;errore di sintassi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4092"/>
+        <location filename="../ViewManager/ViewManager.py" line="4116"/>
         <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vai all&apos;errore di sintassi&lt;/b&gt;&lt;p&gt;Vai all&apos;errore di sintassi successivo dell&apos;editor corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4105"/>
+        <location filename="../ViewManager/ViewManager.py" line="4129"/>
         <source>Clear Syntax Errors</source>
         <translation>Pulisci errori di sintassi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4100"/>
+        <location filename="../ViewManager/ViewManager.py" line="4124"/>
         <source>Clear &amp;Syntax Errors</source>
         <translation>Pulisci errori di &amp;sintassi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4107"/>
+        <location filename="../ViewManager/ViewManager.py" line="4131"/>
         <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Pulisci errori di sintassi&lt;/b&gt;&lt;p&gt;Pulisci gli errori di sintassi da tutti gli editor.&lt;/p&gt;</translation>
     </message>
@@ -85768,37 +85763,37 @@
         <translation>Shift+Ins</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2012"/>
+        <location filename="../ViewManager/ViewManager.py" line="2034"/>
         <source>Shift+Backspace</source>
         <translation>Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4175"/>
+        <location filename="../ViewManager/ViewManager.py" line="4199"/>
         <source>Next uncovered line</source>
         <translation>Prossima linea non analizzata</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4169"/>
+        <location filename="../ViewManager/ViewManager.py" line="4193"/>
         <source>&amp;Next uncovered line</source>
         <translation>Prossima linea &amp;non analizzata</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4177"/>
+        <location filename="../ViewManager/ViewManager.py" line="4201"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Prossima linea  non analizzata&lt;/b&gt;&lt;p&gt;Vai alla prossima riga dell&apos;editor corrente marcato come non analizzata.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4194"/>
+        <location filename="../ViewManager/ViewManager.py" line="4218"/>
         <source>Previous uncovered line</source>
         <translation>Linea non analizzata precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4186"/>
+        <location filename="../ViewManager/ViewManager.py" line="4210"/>
         <source>&amp;Previous uncovered line</source>
         <translation>Linea non analizzata &amp;precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4196"/>
+        <location filename="../ViewManager/ViewManager.py" line="4220"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Linea non analizzata precedente&lt;/b&gt;&lt;p&gt;Vai alla prossima riga dell&apos;editor corrente marcato come non analizzata.&lt;/p&gt;</translation>
     </message>
@@ -85813,70 +85808,70 @@
         <translation>&lt;b&gt;Apri un file&lt;/b&gt;&lt;p&gt;Verrà richiesto il nome del file da aprire in una finestra dell&apos;editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3387"/>
+        <location filename="../ViewManager/ViewManager.py" line="3411"/>
         <source>Quicksearch</source>
         <translation>Quicksearch</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3088"/>
+        <location filename="../ViewManager/ViewManager.py" line="3112"/>
         <source>Ctrl+Shift+K</source>
         <comment>Search|Quicksearch</comment>
         <translation>Ctrl+Shift+K</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3096"/>
+        <location filename="../ViewManager/ViewManager.py" line="3120"/>
         <source>Perform a quicksearch</source>
         <translation>Esegui un quicksearch</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <source>Quicksearch backwards</source>
         <translation>Quicksearch all&apos;indietro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <source>Ctrl+Shift+J</source>
         <comment>Search|Quicksearch backwards</comment>
         <translation>Ctrl+Shift+J</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3119"/>
+        <location filename="../ViewManager/ViewManager.py" line="3143"/>
         <source>Perform a quicksearch backwards</source>
         <translation>Esegui una quicksearch all&apos;indietro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3088"/>
+        <location filename="../ViewManager/ViewManager.py" line="3112"/>
         <source>&amp;Quicksearch</source>
         <translation>&amp;Quicksearch</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <source>Quicksearch &amp;backwards</source>
         <translation>Quicksearch &amp;all&apos;indietro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Quicksearch extend</source>
         <translation>Quicksearch estesa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Quicksearch e&amp;xtend</source>
         <translation>Quicksearch es&amp;tesa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Ctrl+Shift+H</source>
         <comment>Search|Quicksearch extend</comment>
         <translation>Ctrl+Shift+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3139"/>
+        <location filename="../ViewManager/ViewManager.py" line="3163"/>
         <source>Extend the quicksearch to the end of the current word</source>
         <translation>Estenti la quicksearch alla fine della parola corrente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3142"/>
+        <location filename="../ViewManager/ViewManager.py" line="3166"/>
         <source>&lt;b&gt;Quicksearch extend&lt;/b&gt;&lt;p&gt;This extends the quicksearch text to the end of the word currently found.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Quicksearch estesa&lt;/b&gt;&lt;p&gt;Estende il testo della quicksearch alla fine della parola trovata.&lt;/p&gt;</translation>
     </message>
@@ -85896,47 +85891,47 @@
         <translation>&lt;b&gt;Smart indent&lt;/b&gt;&lt;p&gt;Indenta la riga attuale o le righe selezionate in maniera furba.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3724"/>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
         <source>Next split</source>
         <translation>Prossima divisione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3724"/>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
         <source>&amp;Next split</source>
         <translation>Prossima divisio&amp;ne</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3731"/>
+        <location filename="../ViewManager/ViewManager.py" line="3755"/>
         <source>Move to the next split</source>
         <translation>Vai alla prossima divisione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3733"/>
+        <location filename="../ViewManager/ViewManager.py" line="3757"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Prossima divisione&lt;/b&gt;&lt;p&gt;Vai alla prossima divisione.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>Previous split</source>
         <translation>Divisione precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>&amp;Previous split</source>
         <translation>Divisione &amp;precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3747"/>
+        <location filename="../ViewManager/ViewManager.py" line="3771"/>
         <source>Move to the previous split</source>
         <translation>Vai alla divisione precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3749"/>
+        <location filename="../ViewManager/ViewManager.py" line="3773"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Divisione precedente&lt;/b&gt;&lt;p&gt;Vai alla divisione precedente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Enter</source>
         <translation>Enter</translation>
     </message>
@@ -85956,27 +85951,27 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <location filename="../ViewManager/ViewManager.py" line="3607"/>
         <source>Toggle all folds (including children)</source>
         <translation>Abilita/Disabilita tutti i raggruppamenti (inclusi i figli)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3577"/>
+        <location filename="../ViewManager/ViewManager.py" line="3601"/>
         <source>Toggle all &amp;folds (including children)</source>
         <translation>Abilita/Disabilita tutti i raggruppamenti (inclusi i &amp;figli)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3585"/>
+        <location filename="../ViewManager/ViewManager.py" line="3609"/>
         <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Abilita/Disabilita tutti i raggruppamenti (inclusi i figli)&lt;/b&gt;&lt;p&gt;Abilita/Disabilita tutti i raggruppamenti dell&apos;edito inclusi i figli.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2379"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Duplicate current selection</source>
         <translation>Duplica la selezione corrente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2379"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Ctrl+Shift+D</source>
         <translation>Ctrl+Shift+D</translation>
     </message>
@@ -86123,187 +86118,187 @@
         <translation>Alt+Ctrl+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2786"/>
+        <location filename="../ViewManager/ViewManager.py" line="2808"/>
         <source>&amp;Edit</source>
         <translation>&amp;Edita</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2843"/>
+        <location filename="../ViewManager/ViewManager.py" line="2867"/>
         <source>Edit</source>
         <translation>Modifica</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2875"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation>Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation>Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <location filename="../ViewManager/ViewManager.py" line="3176"/>
         <source>Ctrl+G</source>
         <comment>Search|Goto Line</comment>
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <location filename="../ViewManager/ViewManager.py" line="3195"/>
         <source>Ctrl+L</source>
         <comment>Search|Goto Brace</comment>
         <translation>Ctrl+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation>Shift+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation>Ctrl+#</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3724"/>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation>Ctrl+Alt+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation>Ctrl+Alt+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3833"/>
+        <location filename="../ViewManager/ViewManager.py" line="3857"/>
         <source>&amp;View</source>
         <translation>&amp;Visualizza</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3870"/>
+        <location filename="../ViewManager/ViewManager.py" line="3894"/>
         <source>View</source>
         <translation>Visualizza</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3994"/>
+        <location filename="../ViewManager/ViewManager.py" line="4018"/>
         <source>&amp;Macros</source>
         <translation>&amp;Macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation>Alt+Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation>Ctrl+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <location filename="../ViewManager/ViewManager.py" line="4073"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4091"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation>Alt+Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4355"/>
         <source>Bookmarks</source>
         <translation>Segnalibri</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4483"/>
+        <location filename="../ViewManager/ViewManager.py" line="4507"/>
         <source>Open files</source>
         <translation>Apri Files</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4236"/>
         <source>Next Task</source>
         <translation>Task seguente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4206"/>
+        <location filename="../ViewManager/ViewManager.py" line="4230"/>
         <source>&amp;Next Task</source>
         <translation>Task segue&amp;nte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4214"/>
+        <location filename="../ViewManager/ViewManager.py" line="4238"/>
         <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Task seguente&lt;/b&gt;&lt;p&gt;Vai alla prossima riga dell&apos;editor che ha un task.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4229"/>
+        <location filename="../ViewManager/ViewManager.py" line="4253"/>
         <source>Previous Task</source>
         <translation>Task Precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4222"/>
+        <location filename="../ViewManager/ViewManager.py" line="4246"/>
         <source>&amp;Previous Task</source>
         <translation>Task &amp;Precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4255"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Task Precedente&lt;/b&gt;&lt;p&gt;Vai alla precedente riga dell&apos;editor che ha un task.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3352"/>
+        <location filename="../ViewManager/ViewManager.py" line="3376"/>
         <source>&amp;Search</source>
         <translation>&amp;Ricerca</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Search next</source>
         <translation>Cerca seguente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Search &amp;next</source>
         <translation>Cerca segue&amp;nte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation>F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Search previous</source>
         <translation>Cerca precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Search &amp;previous</source>
         <translation>Cerca &amp;precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation>Shift+F3</translation>
@@ -86329,7 +86324,7 @@
         <translation>Esporta come</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3433"/>
+        <location filename="../ViewManager/ViewManager.py" line="3457"/>
         <source>Quicksearch Textedit</source>
         <translation>Quicksearch Textedit</translation>
     </message>
@@ -86360,58 +86355,58 @@
         <translation>&lt;b&gt;Calltip&lt;/b&gt;&lt;p&gt;Mostra calltip basati sul carattere immediatamente a sinistra del cursore.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2904"/>
+        <location filename="../ViewManager/ViewManager.py" line="2928"/>
         <source>Search next occurrence of text</source>
         <translation>Cerca prossima ricorrenza del testo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2906"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Trova successivo&lt;/b&gt;&lt;p&gt;Trova la prossima occorrenza di testo nell&apos;editor corrente. Il testo inserito precedentemente e opzioni verranno riutilizzate.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2924"/>
+        <location filename="../ViewManager/ViewManager.py" line="2948"/>
         <source>Search previous occurrence of text</source>
         <translation>Cerca la precedente  ricorrenza del testo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2926"/>
+        <location filename="../ViewManager/ViewManager.py" line="2950"/>
         <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Trova precedente&lt;/b&gt;&lt;p&gt;Trova la precedente occorrenza di testo nell&apos;editor corrente. Il testo inserito precedentemente e opzioni verranno riutilizzate.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2936"/>
+        <location filename="../ViewManager/ViewManager.py" line="2960"/>
         <source>Clear search markers</source>
         <translation>Pulisci marcatori di ricerca</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2936"/>
+        <location filename="../ViewManager/ViewManager.py" line="2960"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation>Ctrl+3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2944"/>
+        <location filename="../ViewManager/ViewManager.py" line="2968"/>
         <source>Clear all displayed search markers</source>
         <translation>Pulisci tutti i marcatori di ricerca mostrati</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2946"/>
+        <location filename="../ViewManager/ViewManager.py" line="2970"/>
         <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Pulisci marcatori di ricerca&lt;/b&gt;&lt;p&gt;Pulisci tutti i marcatori di ricerca mostrati.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3098"/>
-        <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;Attiva la ricerca veloce dell&apos;IDE attivando il focus del campo ricerca veloce. Se il campo è già attivo e contiene del testo, viene cercata la successiva occorrenza del testo.&lt;/P&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3122"/>
+        <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;Attiva la ricerca veloce dell&apos;IDE attivando il focus del campo ricerca veloce. Se il campo è già attivo e contiene del testo, viene cercata la successiva occorrenza del testo.&lt;/P&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3146"/>
         <source>&lt;b&gt;Quicksearch backwards&lt;/b&gt;&lt;p&gt;This searches the previous occurrence of the quicksearch text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Quicksearch all&apos;indietro&lt;/b&gt;&lt;p&gt;Cerca la precedente occorrenza del testo della ricerca veloce.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3406"/>
+        <location filename="../ViewManager/ViewManager.py" line="3430"/>
         <source>&lt;p&gt;Enter the searchtext directly into this field. The search will be performed case insensitive. The quicksearch function is activated upon activation of the quicksearch next action (default key Ctrl+Shift+K), if this entry field does not have the input focus. Otherwise it searches for the next occurrence of the text entered. The quicksearch backwards action (default key Ctrl+Shift+J) searches backward. Activating the &apos;quicksearch extend&apos; action (default key Ctrl+Shift+H) extends the current searchtext to the end of the currently found word. The quicksearch can be ended by pressing the Return key while the quicksearch entry has the the input focus.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Inserisci il testo da cercare direttamente in questo campo. La ricerca verrà effettuata ignorando le maiuscole/minuscole. La funzione quicksearch è attivata dall&apos;azione di ricerca della successiva (tasto default Ctrl+Shift+K), se questo campo non ha il focus. Altrimenti cerca per la successiva occorrenza del testo inserito. La quicksearch all&apos;indietro (tasto default Ctrl+Shift+J) cerca la precedente occorrenza. Attivando la &apos;quicksearch estesa&apos; (tasto default Ctrl+Shift+H) estende la ricerca alla fine della parola trovata. La ricerca veloce può essere conclusa premento Return mentre il campo di input ha il focus.&lt;/p&gt;</translation>
     </message>
@@ -86431,124 +86426,124 @@
         <translation>&lt;b&gt;Anteprima di stampa&lt;/b&gt;&lt;p&gt;Anteprima di stampa del file corrente.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Insert new line below current line</source>
         <translation>Inserisci una nuova riga sotto la linea corrente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Shift+Return</source>
         <translation>Shift+Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Shift+Enter</source>
         <translation>Shift+Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Replace in Files</source>
         <translation>Sostituisci nei file</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Replace in F&amp;iles...</source>
         <translation>Sostituisci nei f&amp;ile...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation>Shift+Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3286"/>
+        <location filename="../ViewManager/ViewManager.py" line="3310"/>
         <source>Search for a text in files and replace it</source>
         <translation>Cerca e sostituisci un testo nei file</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3288"/>
+        <location filename="../ViewManager/ViewManager.py" line="3312"/>
         <source>&lt;b&gt;Replace in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sostituisci nei File&lt;/b&gt;&lt;p&gt;Cerca per del testo nei file di una direcotry o del progetto e lo sostituisce. Un dialogo viene mostrato per inserire il testo da cercare, il testo da inserire e le opzioni per la ricerca e la visualizzazione del risultato.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4373"/>
+        <location filename="../ViewManager/ViewManager.py" line="4397"/>
         <source>Perform spell check of current editor</source>
         <translation>Esegui la correzione automatica nella finestra corrente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4383"/>
+        <location filename="../ViewManager/ViewManager.py" line="4407"/>
         <source>Automatic spell checking</source>
         <translation>Controllo sintassi automatico</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4383"/>
+        <location filename="../ViewManager/ViewManager.py" line="4407"/>
         <source>&amp;Automatic spell checking</source>
         <translation>Controllo sintassi &amp;automatico</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4391"/>
+        <location filename="../ViewManager/ViewManager.py" line="4415"/>
         <source>(De-)Activate automatic spell checking</source>
         <translation>(Dis-)Attiva il controllo sintassi automatico</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4393"/>
+        <location filename="../ViewManager/ViewManager.py" line="4417"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Controllo sintassi automatico&lt;/b&gt;&lt;p&gt;Attiva o disattiva la funzione di controllo sintassi automatico per tutti gli editor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4460"/>
+        <location filename="../ViewManager/ViewManager.py" line="4484"/>
         <source>Spelling</source>
         <translation>Spelling</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4527"/>
+        <location filename="../ViewManager/ViewManager.py" line="4551"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Il file &lt;b&gt;{0}&lt;/b&gt; contiene modifiche non salvate.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4926"/>
+        <location filename="../ViewManager/ViewManager.py" line="4950"/>
         <source>Line: {0:5}</source>
         <translation>Linea: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4932"/>
+        <location filename="../ViewManager/ViewManager.py" line="4956"/>
         <source>Pos: {0:5}</source>
         <translation>Pos: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4122"/>
+        <location filename="../ViewManager/ViewManager.py" line="4146"/>
         <source>Next warning message</source>
         <translation>Warning successivo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4116"/>
+        <location filename="../ViewManager/ViewManager.py" line="4140"/>
         <source>&amp;Next warning message</source>
         <translation>Warni&amp;ng successivo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4141"/>
+        <location filename="../ViewManager/ViewManager.py" line="4165"/>
         <source>Previous warning message</source>
         <translation>Messaggio di warning precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4133"/>
+        <location filename="../ViewManager/ViewManager.py" line="4157"/>
         <source>&amp;Previous warning message</source>
         <translation>Messaggio di warning &amp;precedente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4159"/>
+        <location filename="../ViewManager/ViewManager.py" line="4183"/>
         <source>Clear Warning Messages</source>
         <translation>Pulisci messaggi di warning</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4152"/>
+        <location filename="../ViewManager/ViewManager.py" line="4176"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>Pulisci messaggi di &amp;warning</translation>
     </message>
@@ -86569,425 +86564,425 @@
         <translation>&lt;b&gt;Unisci linee&lt;/b&gt;&lt;p&gt;Unisci la linea corrente e la successiva.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3200"/>
+        <location filename="../ViewManager/ViewManager.py" line="3224"/>
         <source>Goto Last Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3213"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3213"/>
         <source>Ctrl+Shift+G</source>
         <comment>Search|Goto Last Edit Location</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3203"/>
+        <location filename="../ViewManager/ViewManager.py" line="3227"/>
         <source>&lt;b&gt;Goto Last Edit Location&lt;/b&gt;&lt;p&gt;Go to the location of the last edit in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3212"/>
-        <source>Goto Previous Method or Class</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3212"/>
-        <source>Ctrl+Shift+Up</source>
-        <comment>Search|Goto Previous Method or Class</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3222"/>
-        <source>Go to the previous method or class definition</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3226"/>
-        <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3236"/>
-        <source>Goto Next Method or Class</source>
+        <source>Goto Previous Method or Class</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3236"/>
-        <source>Ctrl+Shift+Down</source>
-        <comment>Search|Goto Next Method or Class</comment>
+        <source>Ctrl+Shift+Up</source>
+        <comment>Search|Goto Previous Method or Class</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3246"/>
+        <source>Go to the previous method or class definition</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3250"/>
+        <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3260"/>
+        <source>Goto Next Method or Class</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3260"/>
+        <source>Ctrl+Shift+Down</source>
+        <comment>Search|Goto Next Method or Class</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3270"/>
         <source>Go to the next method or class definition</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3248"/>
+        <location filename="../ViewManager/ViewManager.py" line="3272"/>
         <source>&lt;b&gt;Goto Next Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the next method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3757"/>
+        <location filename="../ViewManager/ViewManager.py" line="3781"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3762"/>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <source>Preview the current file in the web browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3764"/>
+        <location filename="../ViewManager/ViewManager.py" line="3788"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1489"/>
+        <location filename="../ViewManager/ViewManager.py" line="1511"/>
         <source>Meta+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1502"/>
+        <location filename="../ViewManager/ViewManager.py" line="1524"/>
         <source>Meta+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1514"/>
+        <location filename="../ViewManager/ViewManager.py" line="1536"/>
         <source>Meta+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1526"/>
+        <location filename="../ViewManager/ViewManager.py" line="1548"/>
         <source>Meta+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1587"/>
+        <location filename="../ViewManager/ViewManager.py" line="1609"/>
         <source>Move to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1603"/>
+        <location filename="../ViewManager/ViewManager.py" line="1625"/>
         <source>Move to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1620"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Move to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1628"/>
+        <location filename="../ViewManager/ViewManager.py" line="1650"/>
         <source>Meta+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1696"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Meta+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1702"/>
+        <location filename="../ViewManager/ViewManager.py" line="1724"/>
         <source>Move to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1719"/>
+        <location filename="../ViewManager/ViewManager.py" line="1741"/>
         <source>Move to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1764"/>
+        <location filename="../ViewManager/ViewManager.py" line="1786"/>
         <source>Meta+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1779"/>
+        <location filename="../ViewManager/ViewManager.py" line="1801"/>
         <source>Meta+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1794"/>
+        <location filename="../ViewManager/ViewManager.py" line="1816"/>
         <source>Meta+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1809"/>
+        <location filename="../ViewManager/ViewManager.py" line="1831"/>
         <source>Meta+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1877"/>
+        <location filename="../ViewManager/ViewManager.py" line="1899"/>
         <source>Extend selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1895"/>
+        <location filename="../ViewManager/ViewManager.py" line="1917"/>
         <source>Extend selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1903"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Meta+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1960"/>
+        <location filename="../ViewManager/ViewManager.py" line="1982"/>
         <source>Meta+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1966"/>
+        <location filename="../ViewManager/ViewManager.py" line="1988"/>
         <source>Extend selection to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1974"/>
+        <location filename="../ViewManager/ViewManager.py" line="1996"/>
         <source>Ctrl+Shift+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1983"/>
+        <location filename="../ViewManager/ViewManager.py" line="2005"/>
         <source>Extend selection to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1991"/>
+        <location filename="../ViewManager/ViewManager.py" line="2013"/>
         <source>Ctrl+Shift+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2009"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Meta+H</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2018"/>
+        <location filename="../ViewManager/ViewManager.py" line="2040"/>
         <source>Delete previous character if not at start of line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2039"/>
+        <location filename="../ViewManager/ViewManager.py" line="2061"/>
         <source>Meta+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2083"/>
+        <location filename="../ViewManager/ViewManager.py" line="2105"/>
         <source>Meta+K</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2192"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <source>Move to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2209"/>
+        <location filename="../ViewManager/ViewManager.py" line="2231"/>
         <source>Extend selection to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2251"/>
+        <location filename="../ViewManager/ViewManager.py" line="2273"/>
         <source>Meta+Alt+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2266"/>
+        <location filename="../ViewManager/ViewManager.py" line="2288"/>
         <source>Meta+Alt+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2284"/>
+        <location filename="../ViewManager/ViewManager.py" line="2306"/>
         <source>Meta+Alt+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2302"/>
+        <location filename="../ViewManager/ViewManager.py" line="2324"/>
         <source>Meta+Alt+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2308"/>
+        <location filename="../ViewManager/ViewManager.py" line="2330"/>
         <source>Extend rectangular selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2327"/>
+        <location filename="../ViewManager/ViewManager.py" line="2349"/>
         <source>Extend rectangular selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2337"/>
+        <location filename="../ViewManager/ViewManager.py" line="2359"/>
         <source>Meta+Alt+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2340"/>
+        <location filename="../ViewManager/ViewManager.py" line="2362"/>
         <source>Alt+Shift+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2361"/>
+        <location filename="../ViewManager/ViewManager.py" line="2383"/>
         <source>Alt+Shift+PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2373"/>
+        <location filename="../ViewManager/ViewManager.py" line="2395"/>
         <source>Meta+Alt+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2393"/>
+        <location filename="../ViewManager/ViewManager.py" line="2415"/>
         <source>Scroll to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2408"/>
+        <location filename="../ViewManager/ViewManager.py" line="2430"/>
         <source>Scroll to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2423"/>
+        <location filename="../ViewManager/ViewManager.py" line="2445"/>
         <source>Scroll vertically to center current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2431"/>
-        <source>Meta+L</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2438"/>
-        <source>Move to end of next word</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2453"/>
+        <source>Meta+L</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2460"/>
+        <source>Move to end of next word</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2475"/>
         <source>Extend selection to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2469"/>
+        <location filename="../ViewManager/ViewManager.py" line="2491"/>
         <source>Move to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2481"/>
+        <location filename="../ViewManager/ViewManager.py" line="2503"/>
         <source>Extend selection to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2493"/>
+        <location filename="../ViewManager/ViewManager.py" line="2515"/>
         <source>Move to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2501"/>
+        <location filename="../ViewManager/ViewManager.py" line="2523"/>
         <source>Meta+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2508"/>
+        <location filename="../ViewManager/ViewManager.py" line="2530"/>
         <source>Extend selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2519"/>
+        <location filename="../ViewManager/ViewManager.py" line="2541"/>
         <source>Meta+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2526"/>
+        <location filename="../ViewManager/ViewManager.py" line="2548"/>
         <source>Extend rectangular selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2536"/>
+        <location filename="../ViewManager/ViewManager.py" line="2558"/>
         <source>Meta+Alt+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2544"/>
+        <location filename="../ViewManager/ViewManager.py" line="2566"/>
         <source>Extend selection to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2563"/>
+        <location filename="../ViewManager/ViewManager.py" line="2585"/>
         <source>Move to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2577"/>
+        <location filename="../ViewManager/ViewManager.py" line="2599"/>
         <source>Extend selection to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2592"/>
+        <location filename="../ViewManager/ViewManager.py" line="2614"/>
         <source>Move to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2609"/>
+        <location filename="../ViewManager/ViewManager.py" line="2631"/>
         <source>Extend selection to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2626"/>
+        <location filename="../ViewManager/ViewManager.py" line="2648"/>
         <source>Move to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2640"/>
+        <location filename="../ViewManager/ViewManager.py" line="2662"/>
         <source>Extend selection to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2655"/>
+        <location filename="../ViewManager/ViewManager.py" line="2677"/>
         <source>Stuttered move up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2667"/>
+        <location filename="../ViewManager/ViewManager.py" line="2689"/>
         <source>Stuttered extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2680"/>
+        <location filename="../ViewManager/ViewManager.py" line="2702"/>
         <source>Stuttered move down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2692"/>
+        <location filename="../ViewManager/ViewManager.py" line="2714"/>
         <source>Stuttered extend selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2705"/>
+        <location filename="../ViewManager/ViewManager.py" line="2727"/>
         <source>Delete right to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2713"/>
+        <location filename="../ViewManager/ViewManager.py" line="2735"/>
         <source>Alt+Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2720"/>
+        <location filename="../ViewManager/ViewManager.py" line="2742"/>
         <source>Move selected lines up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2732"/>
+        <location filename="../ViewManager/ViewManager.py" line="2754"/>
         <source>Move selected lines down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2346"/>
+        <location filename="../ViewManager/ViewManager.py" line="2368"/>
         <source>Alt+Shift+PgUp</source>
         <translation type="unfinished"></translation>
     </message>
@@ -87013,39 +87008,39 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Zoom reset</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished">&amp;Reset zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation type="unfinished">Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3533"/>
+        <location filename="../ViewManager/ViewManager.py" line="3557"/>
         <source>Reset the zoom of the text</source>
         <translation type="unfinished">Resetta lo zoom del testo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3535"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Reset zoom&lt;/b&gt;&lt;p&gt;Reset dello zoom del testo. Imposta il fattore di zoom al 100%.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
@@ -87056,191 +87051,191 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <location filename="../ViewManager/ViewManager.py" line="4270"/>
         <source>Next Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4240"/>
-        <source>&amp;Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4248"/>
-        <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <source>&amp;Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4272"/>
+        <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4288"/>
         <source>Previous Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4257"/>
+        <location filename="../ViewManager/ViewManager.py" line="4281"/>
         <source>&amp;Previous Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4266"/>
+        <location filename="../ViewManager/ViewManager.py" line="4290"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Check spelling</source>
         <translation type="unfinished">Controllo sillabazione</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Check &amp;spelling...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4399"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4424"/>
+        <location filename="../ViewManager/ViewManager.py" line="4448"/>
         <source>Edit Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4426"/>
+        <location filename="../ViewManager/ViewManager.py" line="4450"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4429"/>
+        <location filename="../ViewManager/ViewManager.py" line="4453"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4434"/>
+        <location filename="../ViewManager/ViewManager.py" line="4458"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4437"/>
+        <location filename="../ViewManager/ViewManager.py" line="4461"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6630"/>
+        <location filename="../ViewManager/ViewManager.py" line="6654"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6607"/>
+        <location filename="../ViewManager/ViewManager.py" line="6631"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6589"/>
+        <location filename="../ViewManager/ViewManager.py" line="6613"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6618"/>
+        <location filename="../ViewManager/ViewManager.py" line="6642"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6630"/>
+        <location filename="../ViewManager/ViewManager.py" line="6654"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2955"/>
+        <location filename="../ViewManager/ViewManager.py" line="2979"/>
         <source>Search current word forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2955"/>
+        <location filename="../ViewManager/ViewManager.py" line="2979"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2966"/>
+        <location filename="../ViewManager/ViewManager.py" line="2990"/>
         <source>Search next occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2969"/>
+        <location filename="../ViewManager/ViewManager.py" line="2993"/>
         <source>&lt;b&gt;Search current word forward&lt;/b&gt;&lt;p&gt;Search the next occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2978"/>
+        <location filename="../ViewManager/ViewManager.py" line="3002"/>
         <source>Search current word backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2978"/>
+        <location filename="../ViewManager/ViewManager.py" line="3002"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2989"/>
+        <location filename="../ViewManager/ViewManager.py" line="3013"/>
         <source>Search previous occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2992"/>
+        <location filename="../ViewManager/ViewManager.py" line="3016"/>
         <source>&lt;b&gt;Search current word backward&lt;/b&gt;&lt;p&gt;Search the previous occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Search in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Search in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Meta+Ctrl+Alt+F</source>
         <comment>Search|Search Open Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3310"/>
-        <source>Search for a text in open files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3312"/>
-        <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
-        <source>Replace in Open Files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
-        <source>Meta+Ctrl+Alt+R</source>
-        <comment>Search|Replace in Open Files</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3332"/>
-        <source>Search for a text in open files and replace it</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3334"/>
+        <source>Search for a text in open files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3336"/>
+        <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
+        <source>Replace in Open Files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
+        <source>Meta+Ctrl+Alt+R</source>
+        <comment>Search|Replace in Open Files</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
+        <source>Search for a text in open files and replace it</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3358"/>
         <source>&lt;b&gt;Replace in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
         <source>Replace in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -87266,62 +87261,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4953"/>
+        <location filename="../ViewManager/ViewManager.py" line="4977"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4960"/>
+        <location filename="../ViewManager/ViewManager.py" line="4984"/>
         <source>EOL Mode: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3641"/>
+        <location filename="../ViewManager/ViewManager.py" line="3665"/>
         <source>New Document View</source>
         <translation type="unfinished">Nuova vista Documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3641"/>
-        <source>New &amp;Document View</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3646"/>
-        <source>Open a new view of the current document</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3648"/>
-        <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3658"/>
-        <source>New Document View (with new split)</source>
-        <translation type="unfinished">Nuova vista Documento (con nuova divisione)</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3665"/>
+        <source>New &amp;Document View</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3670"/>
+        <source>Open a new view of the current document</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3672"/>
+        <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3682"/>
+        <source>New Document View (with new split)</source>
+        <translation type="unfinished">Nuova vista Documento (con nuova divisione)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3689"/>
         <source>Open a new view of the current document in a new split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3668"/>
+        <location filename="../ViewManager/ViewManager.py" line="3692"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4124"/>
+        <location filename="../ViewManager/ViewManager.py" line="4148"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4143"/>
+        <location filename="../ViewManager/ViewManager.py" line="4167"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4161"/>
+        <location filename="../ViewManager/ViewManager.py" line="4185"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -87376,65 +87371,65 @@
         <translation type="unfinished">Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3020"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Replace and Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3020"/>
-        <source>Meta+R</source>
-        <comment>Search|Replace and Search</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3030"/>
-        <source>Replace the found text and search the next occurrence</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3033"/>
-        <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3044"/>
-        <source>Replace Occurrence</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3044"/>
-        <source>Ctrl+Meta+R</source>
-        <comment>Search|Replace Occurrence</comment>
+        <source>Meta+R</source>
+        <comment>Search|Replace and Search</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3054"/>
-        <source>Replace the found text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3056"/>
-        <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3066"/>
-        <source>Replace All</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3066"/>
-        <source>Shift+Meta+R</source>
-        <comment>Search|Replace All</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3076"/>
-        <source>Replace search text occurrences</source>
+        <source>Replace the found text and search the next occurrence</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3057"/>
+        <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <source>Replace Occurrence</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <source>Ctrl+Meta+R</source>
+        <comment>Search|Replace Occurrence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3078"/>
+        <source>Replace the found text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3080"/>
+        <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <source>Replace All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <source>Shift+Meta+R</source>
+        <comment>Search|Replace All</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
+        <source>Replace search text occurrences</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3102"/>
         <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -87460,57 +87455,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <location filename="../ViewManager/ViewManager.py" line="3638"/>
         <source>Clear all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3610"/>
+        <location filename="../ViewManager/ViewManager.py" line="3634"/>
         <source>Clear &amp;all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3616"/>
+        <location filename="../ViewManager/ViewManager.py" line="3640"/>
         <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Reverse selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Meta+Alt+R</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3774"/>
-        <source>Python AST Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3779"/>
-        <source>Show the AST for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3781"/>
-        <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3791"/>
-        <source>Python Disassembly Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Python AST Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3803"/>
+        <source>Show the AST for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3805"/>
+        <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3815"/>
+        <source>Python Disassembly Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
         <source>Show the Disassembly for the current Python file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3800"/>
+        <location filename="../ViewManager/ViewManager.py" line="3824"/>
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -87529,6 +87524,27 @@
         <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1468"/>
+        <source>Generate Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1468"/>
+        <source>Ctrl+Alt+D</source>
+        <comment>Edit|Generate Docstring</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1475"/>
+        <source>Generate a docstring for the current function/method</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1478"/>
+        <source>&lt;b&gt;Generate Docstring&lt;/b&gt;&lt;p&gt;Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
--- a/eric6/i18n/eric6_pt.ts	Fri Jan 22 16:55:43 2021 +0100
+++ b/eric6/i18n/eric6_pt.ts	Sat Jan 23 12:02:52 2021 +0100
@@ -11634,17 +11634,17 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="828"/>
+        <location filename="../QScintilla/Editor.py" line="832"/>
         <source>Select to brace</source>
         <translation>Selecionar até parentesis</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="830"/>
+        <location filename="../QScintilla/Editor.py" line="834"/>
         <source>Select all</source>
         <translation>Selecionar tudo</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="831"/>
+        <location filename="../QScintilla/Editor.py" line="835"/>
         <source>Deselect all</source>
         <translation>Desselecionar tudo</translation>
     </message>
@@ -11654,12 +11654,12 @@
         <translation>Verificação ortográfica...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="839"/>
+        <location filename="../QScintilla/Editor.py" line="843"/>
         <source>Check spelling of selection...</source>
         <translation>Verificação ortográfica da seleção...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="843"/>
+        <location filename="../QScintilla/Editor.py" line="847"/>
         <source>Remove from dictionary</source>
         <translation>Retirar do dicionário</translation>
     </message>
@@ -12489,12 +12489,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="849"/>
-        <source>Insert Docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8715"/>
+        <location filename="../QScintilla/Editor.py" line="8726"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
@@ -83427,7 +83422,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2776"/>
+        <location filename="../ViewManager/ViewManager.py" line="2798"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
@@ -83507,1972 +83502,1972 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Move left one character</source>
         <translation>Mover um caráter à esquerda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1494"/>
+        <location filename="../ViewManager/ViewManager.py" line="1516"/>
         <source>Move right one character</source>
         <translation>Mover um caráter à direita</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1494"/>
+        <location filename="../ViewManager/ViewManager.py" line="1516"/>
         <source>Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1508"/>
+        <location filename="../ViewManager/ViewManager.py" line="1530"/>
         <source>Move up one line</source>
         <translation>Mover uma linha acima</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1508"/>
+        <location filename="../ViewManager/ViewManager.py" line="1530"/>
         <source>Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1520"/>
+        <location filename="../ViewManager/ViewManager.py" line="1542"/>
         <source>Move down one line</source>
         <translation>Mover uma linha abaixo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1520"/>
+        <location filename="../ViewManager/ViewManager.py" line="1542"/>
         <source>Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1532"/>
+        <location filename="../ViewManager/ViewManager.py" line="1554"/>
         <source>Move left one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1566"/>
+        <location filename="../ViewManager/ViewManager.py" line="1588"/>
         <source>Alt+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1546"/>
+        <location filename="../ViewManager/ViewManager.py" line="1568"/>
         <source>Move right one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2446"/>
+        <location filename="../ViewManager/ViewManager.py" line="2468"/>
         <source>Alt+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1560"/>
+        <location filename="../ViewManager/ViewManager.py" line="1582"/>
         <source>Move left one word</source>
         <translation>Mover uma palavra à esquerda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1611"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Ctrl+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1575"/>
+        <location filename="../ViewManager/ViewManager.py" line="1597"/>
         <source>Move right one word</source>
         <translation>Mover uma palavra à direita</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2200"/>
+        <location filename="../ViewManager/ViewManager.py" line="2222"/>
         <source>Ctrl+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2401"/>
+        <location filename="../ViewManager/ViewManager.py" line="2423"/>
         <source>Home</source>
         <translation type="unfinished">Página Inicial</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1614"/>
+        <location filename="../ViewManager/ViewManager.py" line="1636"/>
         <source>Alt+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2416"/>
+        <location filename="../ViewManager/ViewManager.py" line="2438"/>
         <source>End</source>
         <translation type="unfinished">Fim</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1637"/>
+        <location filename="../ViewManager/ViewManager.py" line="1659"/>
         <source>Scroll view down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1749"/>
         <source>Ctrl+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1649"/>
+        <location filename="../ViewManager/ViewManager.py" line="1671"/>
         <source>Scroll view up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1710"/>
+        <location filename="../ViewManager/ViewManager.py" line="1732"/>
         <source>Ctrl+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1660"/>
+        <location filename="../ViewManager/ViewManager.py" line="1682"/>
         <source>Move up one paragraph</source>
         <translation>Mover um parágrafo acima</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1660"/>
+        <location filename="../ViewManager/ViewManager.py" line="1682"/>
         <source>Alt+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1669"/>
+        <location filename="../ViewManager/ViewManager.py" line="1691"/>
         <source>Move down one paragraph</source>
         <translation>Mover um parágrafo abaixo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1669"/>
+        <location filename="../ViewManager/ViewManager.py" line="1691"/>
         <source>Alt+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1681"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>Move up one page</source>
         <translation>Mover uma página acima</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1681"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>PgUp</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1690"/>
+        <location filename="../ViewManager/ViewManager.py" line="1712"/>
         <source>Move down one page</source>
         <translation>Mover uma pagina abaixo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1690"/>
+        <location filename="../ViewManager/ViewManager.py" line="1712"/>
         <source>PgDown</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1713"/>
+        <location filename="../ViewManager/ViewManager.py" line="1735"/>
         <source>Ctrl+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1730"/>
+        <location filename="../ViewManager/ViewManager.py" line="1752"/>
         <source>Ctrl+End</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Indent one level</source>
         <translation>Indentar um nivel</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Tab</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1745"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Unindent one level</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1745"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Shift+Tab</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1755"/>
+        <location filename="../ViewManager/ViewManager.py" line="1777"/>
         <source>Extend selection left one character</source>
         <translation>Estende a seleção um caráter à esquerda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1755"/>
+        <location filename="../ViewManager/ViewManager.py" line="1777"/>
         <source>Shift+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1770"/>
+        <location filename="../ViewManager/ViewManager.py" line="1792"/>
         <source>Extend selection right one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1770"/>
+        <location filename="../ViewManager/ViewManager.py" line="1792"/>
         <source>Shift+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1785"/>
+        <location filename="../ViewManager/ViewManager.py" line="1807"/>
         <source>Extend selection up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1785"/>
+        <location filename="../ViewManager/ViewManager.py" line="1807"/>
         <source>Shift+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1800"/>
+        <location filename="../ViewManager/ViewManager.py" line="1822"/>
         <source>Extend selection down one line</source>
         <translation>Estende a seleção abaixo uma linha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1800"/>
+        <location filename="../ViewManager/ViewManager.py" line="1822"/>
         <source>Shift+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1815"/>
+        <location filename="../ViewManager/ViewManager.py" line="1837"/>
         <source>Extend selection left one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="1873"/>
+        <source>Alt+Shift+Left</source>
+        <translation></translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="1851"/>
-        <source>Alt+Shift+Left</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1829"/>
         <source>Extend selection right one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2461"/>
+        <location filename="../ViewManager/ViewManager.py" line="2483"/>
         <source>Alt+Shift+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1843"/>
+        <location filename="../ViewManager/ViewManager.py" line="1865"/>
         <source>Extend selection left one word</source>
         <translation>Estende a seleção uma palavra à esquerda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2555"/>
+        <location filename="../ViewManager/ViewManager.py" line="2577"/>
         <source>Ctrl+Shift+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1860"/>
+        <location filename="../ViewManager/ViewManager.py" line="1882"/>
         <source>Extend selection right one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2217"/>
+        <location filename="../ViewManager/ViewManager.py" line="2239"/>
         <source>Ctrl+Shift+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1889"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Shift+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2321"/>
+        <location filename="../ViewManager/ViewManager.py" line="2343"/>
         <source>Alt+Shift+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1906"/>
+        <location filename="../ViewManager/ViewManager.py" line="1928"/>
         <source>Shift+End</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1912"/>
+        <location filename="../ViewManager/ViewManager.py" line="1934"/>
         <source>Extend selection up one paragraph</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1912"/>
+        <location filename="../ViewManager/ViewManager.py" line="1934"/>
         <source>Alt+Shift+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1925"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Extend selection down one paragraph</source>
         <translation>Estende a seleção abaixo uma parágrafo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1925"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Alt+Shift+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Shift+PgUp</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1950"/>
+        <location filename="../ViewManager/ViewManager.py" line="1972"/>
         <source>Extend selection down one page</source>
         <translation>Estende a seleção abaixo uma página</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1950"/>
+        <location filename="../ViewManager/ViewManager.py" line="1972"/>
         <source>Shift+PgDown</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1977"/>
+        <location filename="../ViewManager/ViewManager.py" line="1999"/>
         <source>Ctrl+Shift+Home</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2016"/>
         <source>Ctrl+Shift+End</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2000"/>
+        <location filename="../ViewManager/ViewManager.py" line="2022"/>
         <source>Delete previous character</source>
         <translation>Apagar o caratér anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2000"/>
+        <location filename="../ViewManager/ViewManager.py" line="2022"/>
         <source>Backspace</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2012"/>
+        <location filename="../ViewManager/ViewManager.py" line="2034"/>
         <source>Shift+Backspace</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2031"/>
+        <location filename="../ViewManager/ViewManager.py" line="2053"/>
         <source>Delete current character</source>
         <translation>Apagar o caratér atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2031"/>
+        <location filename="../ViewManager/ViewManager.py" line="2053"/>
         <source>Del</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2045"/>
+        <location filename="../ViewManager/ViewManager.py" line="2067"/>
         <source>Delete word to left</source>
         <translation>Apagar palavra à esquerda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2045"/>
+        <location filename="../ViewManager/ViewManager.py" line="2067"/>
         <source>Ctrl+Backspace</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2056"/>
+        <location filename="../ViewManager/ViewManager.py" line="2078"/>
         <source>Delete word to right</source>
         <translation>Apagar palavra à direita</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2056"/>
+        <location filename="../ViewManager/ViewManager.py" line="2078"/>
         <source>Ctrl+Del</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2066"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Delete line to left</source>
         <translation>Apagar a linha à esquerda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2066"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2077"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Delete line to right</source>
         <translation>Apagar a linha à direita</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2086"/>
+        <location filename="../ViewManager/ViewManager.py" line="2108"/>
         <source>Ctrl+Shift+Del</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Insert new line</source>
         <translation>Inserir linha nova</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Return</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Enter</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Insert new line below current line</source>
         <translation>Inserir linha nova abaixo da atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Shift+Return</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Shift+Enter</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2115"/>
-        <source>Delete current line</source>
-        <translation>Apagar a linha atual</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2115"/>
-        <source>Ctrl+Shift+L</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2126"/>
-        <source>Duplicate current line</source>
-        <translation>Duplicar a linha atual</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2126"/>
-        <source>Ctrl+D</source>
-        <translation></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2137"/>
-        <source>Swap current and previous lines</source>
-        <translation>Trocar a linha atual pela anterior</translation>
+        <source>Delete current line</source>
+        <translation>Apagar a linha atual</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="2137"/>
+        <source>Ctrl+Shift+L</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <source>Duplicate current line</source>
+        <translation>Duplicar a linha atual</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <source>Ctrl+D</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2159"/>
+        <source>Swap current and previous lines</source>
+        <translation>Trocar a linha atual pela anterior</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2159"/>
         <source>Ctrl+T</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2160"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Cut current line</source>
         <translation>Cortar a linha atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2160"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Alt+Shift+L</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2170"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Copy current line</source>
         <translation>Copiar a linha atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2170"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Ctrl+Shift+T</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
-        <source>Toggle insert/overtype</source>
-        <translation>Alternar inserir/sobreescrever</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
-        <source>Ins</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2745"/>
-        <source>Convert selection to lower case</source>
-        <translation>Convertir a seleção para minúsculas</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2745"/>
-        <source>Alt+Shift+U</source>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2757"/>
-        <source>Convert selection to upper case</source>
-        <translation>Convertir a seleção para maiúsculas</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2757"/>
-        <source>Ctrl+Shift+U</source>
-        <translation></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2203"/>
+        <source>Toggle insert/overtype</source>
+        <translation>Alternar inserir/sobreescrever</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2203"/>
+        <source>Ins</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2767"/>
+        <source>Convert selection to lower case</source>
+        <translation>Convertir a seleção para minúsculas</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2767"/>
+        <source>Alt+Shift+U</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2779"/>
+        <source>Convert selection to upper case</source>
+        <translation>Convertir a seleção para maiúsculas</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2779"/>
+        <source>Ctrl+Shift+U</source>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2225"/>
         <source>Alt+End</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2223"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <source>Formfeed</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2232"/>
+        <location filename="../ViewManager/ViewManager.py" line="2254"/>
         <source>Escape</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2232"/>
+        <location filename="../ViewManager/ViewManager.py" line="2254"/>
         <source>Esc</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2241"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Extend rectangular selection down one line</source>
         <translation>Aumentar a seleção retangular uma linha abaixo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2241"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Alt+Ctrl+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2257"/>
+        <location filename="../ViewManager/ViewManager.py" line="2279"/>
         <source>Extend rectangular selection up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2257"/>
+        <location filename="../ViewManager/ViewManager.py" line="2279"/>
         <source>Alt+Ctrl+Up</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2272"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Extend rectangular selection left one character</source>
         <translation>Aumentar a seleção retangular um caratér à esquerda</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2272"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Alt+Ctrl+Left</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2290"/>
+        <location filename="../ViewManager/ViewManager.py" line="2312"/>
         <source>Extend rectangular selection right one character</source>
         <translation>Aumentar a seleção retangular um caratér à direita</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2290"/>
+        <location filename="../ViewManager/ViewManager.py" line="2312"/>
         <source>Alt+Ctrl+Right</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2346"/>
+        <location filename="../ViewManager/ViewManager.py" line="2368"/>
         <source>Extend rectangular selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2361"/>
+        <location filename="../ViewManager/ViewManager.py" line="2383"/>
         <source>Extend rectangular selection down one page</source>
         <translation>Aumentar a seleção retangular uma página abaixo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2379"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Duplicate current selection</source>
         <translation>Duplicar a seleção atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2379"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Ctrl+Shift+D</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3352"/>
+        <location filename="../ViewManager/ViewManager.py" line="3376"/>
         <source>&amp;Search</source>
         <translation>&amp;Procurar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2786"/>
+        <location filename="../ViewManager/ViewManager.py" line="2808"/>
         <source>&amp;Edit</source>
         <translation>&amp;Editar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2843"/>
+        <location filename="../ViewManager/ViewManager.py" line="2867"/>
         <source>Edit</source>
         <translation>Editar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3447"/>
+        <location filename="../ViewManager/ViewManager.py" line="3471"/>
         <source>Search</source>
         <translation>Procurar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2875"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>&amp;Search...</source>
         <translation>&amp;Procurar...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2875"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2883"/>
+        <location filename="../ViewManager/ViewManager.py" line="2907"/>
         <source>Search for a text</source>
         <translation>Procurar um texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2885"/>
+        <location filename="../ViewManager/ViewManager.py" line="2909"/>
         <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Search next</source>
         <translation>Procurar próximo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Search &amp;next</source>
         <translation>Procurar &amp;próximo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2904"/>
+        <location filename="../ViewManager/ViewManager.py" line="2928"/>
         <source>Search next occurrence of text</source>
         <translation>Procurar a próxima ocurrência do texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2906"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Search previous</source>
         <translation>Procurar anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Search &amp;previous</source>
         <translation>Procurar &amp;anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2924"/>
+        <location filename="../ViewManager/ViewManager.py" line="2948"/>
         <source>Search previous occurrence of text</source>
         <translation>Procurar ocurrência anterior do texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2926"/>
+        <location filename="../ViewManager/ViewManager.py" line="2950"/>
         <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2936"/>
+        <location filename="../ViewManager/ViewManager.py" line="2960"/>
         <source>Clear search markers</source>
         <translation>Limpar marcadores de pesquisa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2936"/>
+        <location filename="../ViewManager/ViewManager.py" line="2960"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2944"/>
+        <location filename="../ViewManager/ViewManager.py" line="2968"/>
         <source>Clear all displayed search markers</source>
         <translation>Limpar todos os marcadores de pesquisa mostrados</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2946"/>
+        <location filename="../ViewManager/ViewManager.py" line="2970"/>
         <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>Replace</source>
         <translation>Substituir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>&amp;Replace...</source>
         <translation>&amp;Substituir...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3008"/>
+        <location filename="../ViewManager/ViewManager.py" line="3032"/>
         <source>Replace some text</source>
         <translation>Substituir algum texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3010"/>
+        <location filename="../ViewManager/ViewManager.py" line="3034"/>
         <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3387"/>
+        <location filename="../ViewManager/ViewManager.py" line="3411"/>
         <source>Quicksearch</source>
         <translation>Pesquisa Rápida</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3088"/>
+        <location filename="../ViewManager/ViewManager.py" line="3112"/>
         <source>&amp;Quicksearch</source>
         <translation>&amp;Pesquisa Rápida</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3088"/>
+        <location filename="../ViewManager/ViewManager.py" line="3112"/>
         <source>Ctrl+Shift+K</source>
         <comment>Search|Quicksearch</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3096"/>
+        <location filename="../ViewManager/ViewManager.py" line="3120"/>
         <source>Perform a quicksearch</source>
         <translation>Executar uma pesquisa rápida</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3098"/>
-        <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
-        <source>Quicksearch backwards</source>
-        <translation>Pesquisa Rápida para trás</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
-        <source>Quicksearch &amp;backwards</source>
-        <translation>Pesquisa Rápida para &amp;trás</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
-        <source>Ctrl+Shift+J</source>
-        <comment>Search|Quicksearch backwards</comment>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3119"/>
-        <source>Perform a quicksearch backwards</source>
-        <translation>Executar uma pesquisa rápida para trás</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3122"/>
+        <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <source>Quicksearch backwards</source>
+        <translation>Pesquisa Rápida para trás</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <source>Quicksearch &amp;backwards</source>
+        <translation>Pesquisa Rápida para &amp;trás</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <source>Ctrl+Shift+J</source>
+        <comment>Search|Quicksearch backwards</comment>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3143"/>
+        <source>Perform a quicksearch backwards</source>
+        <translation>Executar uma pesquisa rápida para trás</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3146"/>
         <source>&lt;b&gt;Quicksearch backwards&lt;/b&gt;&lt;p&gt;This searches the previous occurrence of the quicksearch text.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Quicksearch extend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Quicksearch e&amp;xtend</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Ctrl+Shift+H</source>
         <comment>Search|Quicksearch extend</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3139"/>
+        <location filename="../ViewManager/ViewManager.py" line="3163"/>
         <source>Extend the quicksearch to the end of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3142"/>
+        <location filename="../ViewManager/ViewManager.py" line="3166"/>
         <source>&lt;b&gt;Quicksearch extend&lt;/b&gt;&lt;p&gt;This extends the quicksearch text to the end of the word currently found.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3160"/>
+        <location filename="../ViewManager/ViewManager.py" line="3184"/>
         <source>Goto Line</source>
         <translation>Ir à linha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <location filename="../ViewManager/ViewManager.py" line="3176"/>
         <source>&amp;Goto Line...</source>
         <translation>Ir à &amp;Linha...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <location filename="../ViewManager/ViewManager.py" line="3176"/>
         <source>Ctrl+G</source>
         <comment>Search|Goto Line</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3162"/>
+        <location filename="../ViewManager/ViewManager.py" line="3186"/>
         <source>&lt;b&gt;Goto Line&lt;/b&gt;&lt;p&gt;Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <location filename="../ViewManager/ViewManager.py" line="3203"/>
         <source>Goto Brace</source>
         <translation>Ir ao Parentesis</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <location filename="../ViewManager/ViewManager.py" line="3195"/>
         <source>Goto &amp;Brace</source>
         <translation>Ir ao &amp;Parentesis</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <location filename="../ViewManager/ViewManager.py" line="3195"/>
         <source>Ctrl+L</source>
         <comment>Search|Goto Brace</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3181"/>
+        <location filename="../ViewManager/ViewManager.py" line="3205"/>
         <source>&lt;b&gt;Goto Brace&lt;/b&gt;&lt;p&gt;Go to the matching brace in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Ir ao Parentesis&lt;/b&gt;&lt;p&gt;Ir ao parentesis par correspondente no editor atual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Search in Files</source>
         <translation>Procurar em Ficheiros</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Search in &amp;Files...</source>
         <translation>Procurar em &amp;Ficheiros...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3267"/>
+        <location filename="../ViewManager/ViewManager.py" line="3291"/>
         <source>Search for a text in files</source>
         <translation>Procurar um texto em ficheiros</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3269"/>
+        <location filename="../ViewManager/ViewManager.py" line="3293"/>
         <source>&lt;b&gt;Search in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Replace in Files</source>
         <translation>Substituir em Ficheiros</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Replace in F&amp;iles...</source>
         <translation>Substituir em F&amp;icheiros...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3286"/>
+        <location filename="../ViewManager/ViewManager.py" line="3310"/>
         <source>Search for a text in files and replace it</source>
         <translation>Procurar e substituir um texto em ficheiros</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3288"/>
+        <location filename="../ViewManager/ViewManager.py" line="3312"/>
         <source>&lt;b&gt;Replace in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3406"/>
+        <location filename="../ViewManager/ViewManager.py" line="3430"/>
         <source>&lt;p&gt;Enter the searchtext directly into this field. The search will be performed case insensitive. The quicksearch function is activated upon activation of the quicksearch next action (default key Ctrl+Shift+K), if this entry field does not have the input focus. Otherwise it searches for the next occurrence of the text entered. The quicksearch backwards action (default key Ctrl+Shift+J) searches backward. Activating the &apos;quicksearch extend&apos; action (default key Ctrl+Shift+H) extends the current searchtext to the end of the currently found word. The quicksearch can be ended by pressing the Return key while the quicksearch entry has the the input focus.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3433"/>
+        <location filename="../ViewManager/ViewManager.py" line="3457"/>
         <source>Quicksearch Textedit</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom in</source>
         <translation>Aproximar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom &amp;in</source>
         <translation>Apro&amp;ximar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3496"/>
+        <location filename="../ViewManager/ViewManager.py" line="3520"/>
         <source>Zoom in on the text</source>
         <translation>Aproximar no texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3498"/>
+        <location filename="../ViewManager/ViewManager.py" line="3522"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Aproximar&lt;/b&gt;&lt;p&gt;Aproximar no texto. Isto faz o texto mais grande.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom out</source>
         <translation>Afastar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom &amp;out</source>
         <translation>A&amp;fastar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3515"/>
+        <location filename="../ViewManager/ViewManager.py" line="3539"/>
         <source>Zoom out on the text</source>
         <translation>Afastar no texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3517"/>
+        <location filename="../ViewManager/ViewManager.py" line="3541"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Afastar&lt;/b&gt;&lt;p&gt;Afastar no texto. Isto faz o texto mais pequeno.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>Zoom</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>&amp;Zoom</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3552"/>
+        <location filename="../ViewManager/ViewManager.py" line="3576"/>
         <source>Zoom the text</source>
         <translation>Zoom no texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3554"/>
+        <location filename="../ViewManager/ViewManager.py" line="3578"/>
         <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3567"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Toggle all folds</source>
         <translation>Alternar as dobras todas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <location filename="../ViewManager/ViewManager.py" line="3587"/>
         <source>&amp;Toggle all folds</source>
         <translation type="unfinished">Alternar dobras &amp;todas</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3569"/>
+        <location filename="../ViewManager/ViewManager.py" line="3593"/>
         <source>&lt;b&gt;Toggle all folds&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <location filename="../ViewManager/ViewManager.py" line="3607"/>
         <source>Toggle all folds (including children)</source>
         <translation>Alternar as dobras todas (incluindo filhos)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3577"/>
-        <source>Toggle all &amp;folds (including children)</source>
-        <translation>Alternar &amp;dobras todas (incluindo filhos)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3585"/>
-        <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3599"/>
-        <source>Toggle current fold</source>
-        <translation>Alternar a dobra atual</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3595"/>
-        <source>Toggle &amp;current fold</source>
-        <translation>Alternar dobra &amp;atual</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3601"/>
+        <source>Toggle all &amp;folds (including children)</source>
+        <translation>Alternar &amp;dobras todas (incluindo filhos)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3609"/>
+        <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3623"/>
+        <source>Toggle current fold</source>
+        <translation>Alternar a dobra atual</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3619"/>
+        <source>Toggle &amp;current fold</source>
+        <translation>Alternar dobra &amp;atual</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3625"/>
         <source>&lt;b&gt;Toggle current fold&lt;/b&gt;&lt;p&gt;Toggle the folds of the current line of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3631"/>
+        <location filename="../ViewManager/ViewManager.py" line="3655"/>
         <source>Remove all highlights</source>
         <translation>Retirar todo o ressaltado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3633"/>
+        <location filename="../ViewManager/ViewManager.py" line="3657"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3703"/>
         <source>Split view</source>
         <translation>Vista dividida</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3703"/>
         <source>&amp;Split view</source>
         <translation>Vista &amp;dividida</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3684"/>
+        <location filename="../ViewManager/ViewManager.py" line="3708"/>
         <source>Add a split to the view</source>
         <translation>Adicionar uma divisão à vista</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3686"/>
+        <location filename="../ViewManager/ViewManager.py" line="3710"/>
         <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Vista dividida&lt;/b&gt;&lt;p&gt;Adiciona uma divisão ao visor.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3694"/>
+        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>Arrange horizontally</source>
         <translation>Organizar horizontalmente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3694"/>
+        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>Arrange &amp;horizontally</source>
         <translation>Organizar &amp;horizontalmente</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3698"/>
+        <location filename="../ViewManager/ViewManager.py" line="3722"/>
         <source>Arrange the splitted views horizontally</source>
         <translation>Organizar horizontalmente os visores divididos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3700"/>
-        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Ordenar horizontalmente&lt;/b&gt;&lt;p&gt;Ordena horizontalmente os visores divididos.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3709"/>
-        <source>Remove split</source>
-        <translation>Retirar divisão</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3709"/>
-        <source>&amp;Remove split</source>
-        <translation>&amp;Retirar divisão</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3714"/>
-        <source>Remove the current split</source>
-        <translation>Retira a divisão atual</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3716"/>
-        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Retirar divisão&lt;/b&gt;&lt;p&gt;Retira a divisão atual.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3724"/>
-        <source>Next split</source>
-        <translation>Separação seguinte</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3724"/>
-        <source>&amp;Next split</source>
-        <translation>Separação segui&amp;nte</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3724"/>
-        <source>Ctrl+Alt+N</source>
-        <comment>View|Next split</comment>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3731"/>
-        <source>Move to the next split</source>
-        <translation>Mover à seguinte divisão</translation>
+        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Ordenar horizontalmente&lt;/b&gt;&lt;p&gt;Ordena horizontalmente os visores divididos.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3733"/>
+        <source>Remove split</source>
+        <translation>Retirar divisão</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3733"/>
+        <source>&amp;Remove split</source>
+        <translation>&amp;Retirar divisão</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3738"/>
+        <source>Remove the current split</source>
+        <translation>Retira a divisão atual</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3740"/>
+        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Retirar divisão&lt;/b&gt;&lt;p&gt;Retira a divisão atual.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
+        <source>Next split</source>
+        <translation>Separação seguinte</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
+        <source>&amp;Next split</source>
+        <translation>Separação segui&amp;nte</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
+        <source>Ctrl+Alt+N</source>
+        <comment>View|Next split</comment>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3755"/>
+        <source>Move to the next split</source>
+        <translation>Mover à seguinte divisão</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3757"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Separação seguinte&lt;/b&gt;&lt;p&gt;Mover à proxima divisão.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>Previous split</source>
         <translation>Divisão anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>&amp;Previous split</source>
         <translation>Divisão &amp;anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3747"/>
+        <location filename="../ViewManager/ViewManager.py" line="3771"/>
         <source>Move to the previous split</source>
         <translation>Mover à divisão anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3749"/>
+        <location filename="../ViewManager/ViewManager.py" line="3773"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Separação anterior&lt;/b&gt;&lt;p&gt;Mover à divisão anterior.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3833"/>
+        <location filename="../ViewManager/ViewManager.py" line="3857"/>
         <source>&amp;View</source>
         <translation>&amp;Vista</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3870"/>
+        <location filename="../ViewManager/ViewManager.py" line="3894"/>
         <source>View</source>
         <translation>Vista</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3906"/>
-        <source>Start Macro Recording</source>
-        <translation>Iniciar Registo de Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3900"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation>Iniciar Regis&amp;to de Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3908"/>
-        <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Iniciar Registo de Macro&lt;/b&gt;&lt;p&gt;Inicia o registo de comandos do editor num macro novo.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
-        <source>Stop Macro Recording</source>
-        <translation>Para Registo de Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3916"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation>&amp;Para Registo de Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3922"/>
-        <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Parar Registo de Macro&lt;/b&gt;&lt;p&gt;Pára o registo de comandos do editor num macro novo.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3934"/>
-        <source>Run Macro</source>
-        <translation>Executar Macro</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3930"/>
-        <source>&amp;Run Macro</source>
-        <translation>Executa&amp;r Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3936"/>
-        <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Executar Macro&lt;/b&gt;&lt;p&gt;Executa um macro de editor previamente registado.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3948"/>
-        <source>Delete Macro</source>
-        <translation>Apagar Macro</translation>
+        <source>Start Macro Recording</source>
+        <translation>Iniciar Registo de Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3924"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation>Iniciar Regis&amp;to de Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3932"/>
+        <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Iniciar Registo de Macro&lt;/b&gt;&lt;p&gt;Inicia o registo de comandos do editor num macro novo.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3944"/>
-        <source>&amp;Delete Macro</source>
-        <translation>&amp;Apagar Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3950"/>
-        <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Apagar Macro&lt;/b&gt;&lt;p&gt;Apaga um macro de editor previamente registado.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3962"/>
-        <source>Load Macro</source>
-        <translation>Carregar Macro</translation>
+        <source>Stop Macro Recording</source>
+        <translation>Para Registo de Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3940"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation>&amp;Para Registo de Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3946"/>
+        <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Parar Registo de Macro&lt;/b&gt;&lt;p&gt;Pára o registo de comandos do editor num macro novo.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3958"/>
-        <source>&amp;Load Macro</source>
-        <translation>&amp;Carregar Macro</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3964"/>
-        <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Carregar Macro&lt;/b&gt;&lt;p&gt;Carrega um macro de editor desde um ficheiro.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3976"/>
-        <source>Save Macro</source>
-        <translation>Gravar Macro</translation>
+        <source>Run Macro</source>
+        <translation>Executar Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3954"/>
+        <source>&amp;Run Macro</source>
+        <translation>Executa&amp;r Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3960"/>
+        <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Executar Macro&lt;/b&gt;&lt;p&gt;Executa um macro de editor previamente registado.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3972"/>
+        <source>Delete Macro</source>
+        <translation>Apagar Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3968"/>
+        <source>&amp;Delete Macro</source>
+        <translation>&amp;Apagar Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3974"/>
+        <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Apagar Macro&lt;/b&gt;&lt;p&gt;Apaga um macro de editor previamente registado.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3986"/>
+        <source>Load Macro</source>
+        <translation>Carregar Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3982"/>
+        <source>&amp;Load Macro</source>
+        <translation>&amp;Carregar Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3988"/>
+        <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Carregar Macro&lt;/b&gt;&lt;p&gt;Carrega um macro de editor desde um ficheiro.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4000"/>
+        <source>Save Macro</source>
+        <translation>Gravar Macro</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3996"/>
         <source>&amp;Save Macro</source>
         <translation>&amp;Gravar Macro</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3978"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Gravar Macro&lt;/b&gt;&lt;p&gt;Grava um macro de editor previamente registado num ficheiro.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3994"/>
+        <location filename="../ViewManager/ViewManager.py" line="4018"/>
         <source>&amp;Macros</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4020"/>
+        <location filename="../ViewManager/ViewManager.py" line="4044"/>
         <source>Toggle Bookmark</source>
         <translation>Alternar Marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
         <source>&amp;Toggle Bookmark</source>
         <translation>&amp;Alternar Marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation>Alt+Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4022"/>
+        <location filename="../ViewManager/ViewManager.py" line="4046"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4039"/>
+        <location filename="../ViewManager/ViewManager.py" line="4063"/>
         <source>Next Bookmark</source>
         <translation>Marcador Seguinte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>&amp;Next Bookmark</source>
         <translation>Marcador Segui&amp;nte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation>Ctrl+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4041"/>
+        <location filename="../ViewManager/ViewManager.py" line="4065"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <location filename="../ViewManager/ViewManager.py" line="4081"/>
         <source>Previous Bookmark</source>
         <translation>Marcador Anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <location filename="../ViewManager/ViewManager.py" line="4073"/>
         <source>&amp;Previous Bookmark</source>
         <translation>Marcador &amp;Anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <location filename="../ViewManager/ViewManager.py" line="4073"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation>Ctrl+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4059"/>
+        <location filename="../ViewManager/ViewManager.py" line="4083"/>
         <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4074"/>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <source>Clear Bookmarks</source>
         <translation>Limpar Marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4091"/>
         <source>&amp;Clear Bookmarks</source>
         <translation>&amp;Limpar Marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4091"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation>Alt+Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4076"/>
+        <location filename="../ViewManager/ViewManager.py" line="4100"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Limpar Marcadores&lt;/b&gt;&lt;p&gt;Limpa os marcadores de todos os editores&lt;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <location filename="../ViewManager/ViewManager.py" line="4114"/>
         <source>Goto Syntax Error</source>
         <translation>Ir ao Erro de Sintaxe</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4084"/>
+        <location filename="../ViewManager/ViewManager.py" line="4108"/>
         <source>&amp;Goto Syntax Error</source>
         <translation>&amp;Ir ao Erro de Sintaxe</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4092"/>
-        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4105"/>
-        <source>Clear Syntax Errors</source>
-        <translation>Limpar Erros de Sintaxe</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4100"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>Limpar Erros de &amp;Sintaxe</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4107"/>
-        <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Limpar Erros de Sintaxe&lt;/b&gt;&lt;p&gt;Limpa os erros de sintaxe dos editores todos.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4122"/>
-        <source>Next warning message</source>
-        <translation>Mensagem de aviso seguinte</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4116"/>
+        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4129"/>
+        <source>Clear Syntax Errors</source>
+        <translation>Limpar Erros de Sintaxe</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4124"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>Limpar Erros de &amp;Sintaxe</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4131"/>
+        <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Limpar Erros de Sintaxe&lt;/b&gt;&lt;p&gt;Limpa os erros de sintaxe dos editores todos.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4146"/>
+        <source>Next warning message</source>
+        <translation>Mensagem de aviso seguinte</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4140"/>
         <source>&amp;Next warning message</source>
         <translation>Mensagem de aviso segui&amp;nte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4141"/>
+        <location filename="../ViewManager/ViewManager.py" line="4165"/>
         <source>Previous warning message</source>
         <translation>Mensagem de aviso anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4133"/>
+        <location filename="../ViewManager/ViewManager.py" line="4157"/>
         <source>&amp;Previous warning message</source>
         <translation>Mensagem de aviso &amp;anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4159"/>
+        <location filename="../ViewManager/ViewManager.py" line="4183"/>
         <source>Clear Warning Messages</source>
         <translation>Limpar Mensagens de Aviso</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4152"/>
+        <location filename="../ViewManager/ViewManager.py" line="4176"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>Limpar Mensagens de &amp;Aviso</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4175"/>
+        <location filename="../ViewManager/ViewManager.py" line="4199"/>
         <source>Next uncovered line</source>
         <translation>Linha seguinte sem cobrir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4169"/>
+        <location filename="../ViewManager/ViewManager.py" line="4193"/>
         <source>&amp;Next uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4177"/>
+        <location filename="../ViewManager/ViewManager.py" line="4201"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4194"/>
+        <location filename="../ViewManager/ViewManager.py" line="4218"/>
         <source>Previous uncovered line</source>
         <translation>Linha anterior sem cobrir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4186"/>
+        <location filename="../ViewManager/ViewManager.py" line="4210"/>
         <source>&amp;Previous uncovered line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4196"/>
+        <location filename="../ViewManager/ViewManager.py" line="4220"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4236"/>
         <source>Next Task</source>
         <translation>Tarefa Seguinte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4206"/>
+        <location filename="../ViewManager/ViewManager.py" line="4230"/>
         <source>&amp;Next Task</source>
         <translation>Tarefa Segui&amp;nte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4214"/>
+        <location filename="../ViewManager/ViewManager.py" line="4238"/>
         <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4229"/>
+        <location filename="../ViewManager/ViewManager.py" line="4253"/>
         <source>Previous Task</source>
         <translation>Tarefa Anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4222"/>
+        <location filename="../ViewManager/ViewManager.py" line="4246"/>
         <source>&amp;Previous Task</source>
         <translation>Tarefa &amp;Anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4255"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4285"/>
+        <location filename="../ViewManager/ViewManager.py" line="4309"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4355"/>
         <source>Bookmarks</source>
         <translation>Marcadores</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4373"/>
+        <location filename="../ViewManager/ViewManager.py" line="4397"/>
         <source>Perform spell check of current editor</source>
         <translation>Executar a verificação ortográfica do editor atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4383"/>
+        <location filename="../ViewManager/ViewManager.py" line="4407"/>
         <source>Automatic spell checking</source>
         <translation>Verificação ortográfica automática</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4383"/>
+        <location filename="../ViewManager/ViewManager.py" line="4407"/>
         <source>&amp;Automatic spell checking</source>
         <translation>Verificação ortográfica &amp;automática</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4391"/>
+        <location filename="../ViewManager/ViewManager.py" line="4415"/>
         <source>(De-)Activate automatic spell checking</source>
         <translation>(Des)Ativar verificação ortográfica automática</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4393"/>
+        <location filename="../ViewManager/ViewManager.py" line="4417"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Verificação ortográfica automática&lt;/b&gt;&lt;p&gt;Ativa ou desativa a função de verificação ortográfica automática nos editores todos.&lt;p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4460"/>
+        <location filename="../ViewManager/ViewManager.py" line="4484"/>
         <source>Spelling</source>
         <translation>Verificação ortográfica</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4483"/>
+        <location filename="../ViewManager/ViewManager.py" line="4507"/>
         <source>Open files</source>
         <translation>Abrir ficheiros</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4527"/>
+        <location filename="../ViewManager/ViewManager.py" line="4551"/>
         <source>File Modified</source>
         <translation>Ficheiro Modificado</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4527"/>
+        <location filename="../ViewManager/ViewManager.py" line="4551"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;O ficheiro &lt;b&gt;{0}&lt;/b&gt; tem alterações por gravar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4926"/>
+        <location filename="../ViewManager/ViewManager.py" line="4950"/>
         <source>Line: {0:5}</source>
         <translation>Linha: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4932"/>
+        <location filename="../ViewManager/ViewManager.py" line="4956"/>
         <source>Pos: {0:5}</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5371"/>
+        <location filename="../ViewManager/ViewManager.py" line="5395"/>
         <source>&amp;Clear</source>
         <translation>&amp;Limpar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5365"/>
+        <location filename="../ViewManager/ViewManager.py" line="5389"/>
         <source>&amp;Add</source>
         <translation>&amp;Adicionar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5368"/>
+        <location filename="../ViewManager/ViewManager.py" line="5392"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Editar...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3200"/>
+        <location filename="../ViewManager/ViewManager.py" line="3224"/>
         <source>Goto Last Edit Location</source>
         <translation>Ir ao Local da Última Edição</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3213"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation>Ir ao Local da Última &amp;Edição</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3213"/>
         <source>Ctrl+Shift+G</source>
         <comment>Search|Goto Last Edit Location</comment>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3203"/>
+        <location filename="../ViewManager/ViewManager.py" line="3227"/>
         <source>&lt;b&gt;Goto Last Edit Location&lt;/b&gt;&lt;p&gt;Go to the location of the last edit in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3212"/>
-        <source>Goto Previous Method or Class</source>
-        <translation>Ir ao Método ou Classe Anterior</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3212"/>
-        <source>Ctrl+Shift+Up</source>
-        <comment>Search|Goto Previous Method or Class</comment>
-        <translation></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3222"/>
-        <source>Go to the previous method or class definition</source>
-        <translation>Ir à definição de método ou classe anterior</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3226"/>
-        <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3236"/>
-        <source>Goto Next Method or Class</source>
-        <translation>Ir ao Método ou Classe Seguinte</translation>
+        <source>Goto Previous Method or Class</source>
+        <translation>Ir ao Método ou Classe Anterior</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3236"/>
-        <source>Ctrl+Shift+Down</source>
-        <comment>Search|Goto Next Method or Class</comment>
+        <source>Ctrl+Shift+Up</source>
+        <comment>Search|Goto Previous Method or Class</comment>
         <translation></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3246"/>
+        <source>Go to the previous method or class definition</source>
+        <translation>Ir à definição de método ou classe anterior</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3250"/>
+        <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3260"/>
+        <source>Goto Next Method or Class</source>
+        <translation>Ir ao Método ou Classe Seguinte</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3260"/>
+        <source>Ctrl+Shift+Down</source>
+        <comment>Search|Goto Next Method or Class</comment>
+        <translation></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3270"/>
         <source>Go to the next method or class definition</source>
         <translation>Ir à definição de método ou classe seguinte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3248"/>
+        <location filename="../ViewManager/ViewManager.py" line="3272"/>
         <source>&lt;b&gt;Goto Next Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the next method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3757"/>
+        <location filename="../ViewManager/ViewManager.py" line="3781"/>
         <source>Preview</source>
         <translation>Antevisão</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3762"/>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <source>Preview the current file in the web browser</source>
         <translation>Antevisão do ficheiro atual no navegador web</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3764"/>
+        <location filename="../ViewManager/ViewManager.py" line="3788"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1489"/>
+        <location filename="../ViewManager/ViewManager.py" line="1511"/>
         <source>Meta+B</source>
         <translation>Meta+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1502"/>
+        <location filename="../ViewManager/ViewManager.py" line="1524"/>
         <source>Meta+F</source>
         <translation>Meta+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1514"/>
+        <location filename="../ViewManager/ViewManager.py" line="1536"/>
         <source>Meta+P</source>
         <translation type="unfinished">Meta+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1526"/>
+        <location filename="../ViewManager/ViewManager.py" line="1548"/>
         <source>Meta+N</source>
         <translation type="unfinished">Meta+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1587"/>
+        <location filename="../ViewManager/ViewManager.py" line="1609"/>
         <source>Move to first visible character in document line</source>
         <translation>Mover ao primeiro caráter vísivel da linha do documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1603"/>
+        <location filename="../ViewManager/ViewManager.py" line="1625"/>
         <source>Move to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1620"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Move to end of document line</source>
         <translation>Mover ao fim da linha do documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1628"/>
+        <location filename="../ViewManager/ViewManager.py" line="1650"/>
         <source>Meta+E</source>
         <translation type="unfinished">Meta+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1696"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Meta+V</source>
         <translation type="unfinished">Meta+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1702"/>
+        <location filename="../ViewManager/ViewManager.py" line="1724"/>
         <source>Move to start of document</source>
         <translation>Mover ao princípio do documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1719"/>
+        <location filename="../ViewManager/ViewManager.py" line="1741"/>
         <source>Move to end of document</source>
         <translation>Mover ao final do documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1764"/>
+        <location filename="../ViewManager/ViewManager.py" line="1786"/>
         <source>Meta+Shift+B</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1779"/>
+        <location filename="../ViewManager/ViewManager.py" line="1801"/>
         <source>Meta+Shift+F</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1794"/>
+        <location filename="../ViewManager/ViewManager.py" line="1816"/>
         <source>Meta+Shift+P</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1809"/>
+        <location filename="../ViewManager/ViewManager.py" line="1831"/>
         <source>Meta+Shift+N</source>
         <translation>Meta+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1877"/>
+        <location filename="../ViewManager/ViewManager.py" line="1899"/>
         <source>Extend selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1895"/>
+        <location filename="../ViewManager/ViewManager.py" line="1917"/>
         <source>Extend selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1903"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Meta+Shift+E</source>
         <translation>Meta+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1960"/>
+        <location filename="../ViewManager/ViewManager.py" line="1982"/>
         <source>Meta+Shift+V</source>
         <translation>Meta+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1966"/>
+        <location filename="../ViewManager/ViewManager.py" line="1988"/>
         <source>Extend selection to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1974"/>
+        <location filename="../ViewManager/ViewManager.py" line="1996"/>
         <source>Ctrl+Shift+Up</source>
         <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1983"/>
+        <location filename="../ViewManager/ViewManager.py" line="2005"/>
         <source>Extend selection to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1991"/>
+        <location filename="../ViewManager/ViewManager.py" line="2013"/>
         <source>Ctrl+Shift+Down</source>
         <translation></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2009"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Meta+H</source>
         <translation>Meta+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2018"/>
+        <location filename="../ViewManager/ViewManager.py" line="2040"/>
         <source>Delete previous character if not at start of line</source>
         <translation>Apagar o caratér anterior se não está ao princípio da linha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2039"/>
+        <location filename="../ViewManager/ViewManager.py" line="2061"/>
         <source>Meta+D</source>
         <translation>Meta+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2083"/>
+        <location filename="../ViewManager/ViewManager.py" line="2105"/>
         <source>Meta+K</source>
         <translation>Meta+K</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2192"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <source>Move to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2209"/>
+        <location filename="../ViewManager/ViewManager.py" line="2231"/>
         <source>Extend selection to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2251"/>
+        <location filename="../ViewManager/ViewManager.py" line="2273"/>
         <source>Meta+Alt+Shift+N</source>
         <translation>Meta+Alt+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2266"/>
+        <location filename="../ViewManager/ViewManager.py" line="2288"/>
         <source>Meta+Alt+Shift+P</source>
         <translation>Meta+Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2284"/>
+        <location filename="../ViewManager/ViewManager.py" line="2306"/>
         <source>Meta+Alt+Shift+B</source>
         <translation>Meta+Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2302"/>
+        <location filename="../ViewManager/ViewManager.py" line="2324"/>
         <source>Meta+Alt+Shift+F</source>
         <translation>Meta+Alt+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2308"/>
+        <location filename="../ViewManager/ViewManager.py" line="2330"/>
         <source>Extend rectangular selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2327"/>
+        <location filename="../ViewManager/ViewManager.py" line="2349"/>
         <source>Extend rectangular selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2337"/>
+        <location filename="../ViewManager/ViewManager.py" line="2359"/>
         <source>Meta+Alt+Shift+E</source>
         <translation>Meta+Alt+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2340"/>
+        <location filename="../ViewManager/ViewManager.py" line="2362"/>
         <source>Alt+Shift+End</source>
         <translation>Alt+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2361"/>
+        <location filename="../ViewManager/ViewManager.py" line="2383"/>
         <source>Alt+Shift+PgDown</source>
         <translation>Alt+Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2373"/>
+        <location filename="../ViewManager/ViewManager.py" line="2395"/>
         <source>Meta+Alt+Shift+V</source>
         <translation>Meta+Alt+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2393"/>
+        <location filename="../ViewManager/ViewManager.py" line="2415"/>
         <source>Scroll to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2408"/>
+        <location filename="../ViewManager/ViewManager.py" line="2430"/>
         <source>Scroll to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2423"/>
+        <location filename="../ViewManager/ViewManager.py" line="2445"/>
         <source>Scroll vertically to center current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2431"/>
-        <source>Meta+L</source>
-        <translation>Meta+L</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2438"/>
-        <source>Move to end of next word</source>
-        <translation>Mover ao fim da palavra seguinte</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2453"/>
+        <source>Meta+L</source>
+        <translation>Meta+L</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2460"/>
+        <source>Move to end of next word</source>
+        <translation>Mover ao fim da palavra seguinte</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2475"/>
         <source>Extend selection to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2469"/>
+        <location filename="../ViewManager/ViewManager.py" line="2491"/>
         <source>Move to end of previous word</source>
         <translation>Mover ao fim da palavra anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2481"/>
+        <location filename="../ViewManager/ViewManager.py" line="2503"/>
         <source>Extend selection to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2493"/>
+        <location filename="../ViewManager/ViewManager.py" line="2515"/>
         <source>Move to start of document line</source>
         <translation>Mover ao início da linha do documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2501"/>
+        <location filename="../ViewManager/ViewManager.py" line="2523"/>
         <source>Meta+A</source>
         <translation>Meta+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2508"/>
+        <location filename="../ViewManager/ViewManager.py" line="2530"/>
         <source>Extend selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2519"/>
+        <location filename="../ViewManager/ViewManager.py" line="2541"/>
         <source>Meta+Shift+A</source>
         <translation>Meta+Shift+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2526"/>
+        <location filename="../ViewManager/ViewManager.py" line="2548"/>
         <source>Extend rectangular selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2536"/>
+        <location filename="../ViewManager/ViewManager.py" line="2558"/>
         <source>Meta+Alt+Shift+A</source>
         <translation>Meta+Alt+Shift+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2544"/>
+        <location filename="../ViewManager/ViewManager.py" line="2566"/>
         <source>Extend selection to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2563"/>
+        <location filename="../ViewManager/ViewManager.py" line="2585"/>
         <source>Move to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2577"/>
+        <location filename="../ViewManager/ViewManager.py" line="2599"/>
         <source>Extend selection to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2592"/>
+        <location filename="../ViewManager/ViewManager.py" line="2614"/>
         <source>Move to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2609"/>
+        <location filename="../ViewManager/ViewManager.py" line="2631"/>
         <source>Extend selection to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2626"/>
+        <location filename="../ViewManager/ViewManager.py" line="2648"/>
         <source>Move to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2640"/>
+        <location filename="../ViewManager/ViewManager.py" line="2662"/>
         <source>Extend selection to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2655"/>
+        <location filename="../ViewManager/ViewManager.py" line="2677"/>
         <source>Stuttered move up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2667"/>
+        <location filename="../ViewManager/ViewManager.py" line="2689"/>
         <source>Stuttered extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2680"/>
+        <location filename="../ViewManager/ViewManager.py" line="2702"/>
         <source>Stuttered move down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2692"/>
+        <location filename="../ViewManager/ViewManager.py" line="2714"/>
         <source>Stuttered extend selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2705"/>
+        <location filename="../ViewManager/ViewManager.py" line="2727"/>
         <source>Delete right to end of next word</source>
         <translation>Apagar até ao final da proxima palavra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2713"/>
+        <location filename="../ViewManager/ViewManager.py" line="2735"/>
         <source>Alt+Del</source>
         <translation>Alt+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2720"/>
+        <location filename="../ViewManager/ViewManager.py" line="2742"/>
         <source>Move selected lines up one line</source>
         <translation>Mover as linhas selecionadas acima uma linha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2732"/>
+        <location filename="../ViewManager/ViewManager.py" line="2754"/>
         <source>Move selected lines down one line</source>
         <translation>Mover as linhas selecionadas abaixo uma linha</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2346"/>
+        <location filename="../ViewManager/ViewManager.py" line="2368"/>
         <source>Alt+Shift+PgUp</source>
         <translation>Alt+Shift+PgUp</translation>
     </message>
@@ -85498,39 +85493,39 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Zoom reset</source>
         <translation>Restaurar zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Zoom &amp;reset</source>
         <translation>&amp;Restaurar zoom</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3533"/>
+        <location filename="../ViewManager/ViewManager.py" line="3557"/>
         <source>Reset the zoom of the text</source>
         <translation>Reiniciar o zoom do texto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3535"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation>Aproximar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation>Afastar</translation>
@@ -85541,191 +85536,191 @@
         <translation>Gravar &amp;tudo</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <location filename="../ViewManager/ViewManager.py" line="4270"/>
         <source>Next Change</source>
         <translation>Alteração Seguinte</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4240"/>
-        <source>&amp;Next Change</source>
-        <translation>Alteração Segui&amp;nte</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4248"/>
-        <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <source>&amp;Next Change</source>
+        <translation>Alteração Segui&amp;nte</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4272"/>
+        <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4288"/>
         <source>Previous Change</source>
         <translation>Alteração Anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4257"/>
+        <location filename="../ViewManager/ViewManager.py" line="4281"/>
         <source>&amp;Previous Change</source>
         <translation>Alteração &amp;Anterior</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4266"/>
+        <location filename="../ViewManager/ViewManager.py" line="4290"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Check spelling</source>
         <translation>Verificar ortografia</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Check &amp;spelling...</source>
         <translation>Verificar &amp;ortografia...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4399"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Verificação ortográfica&lt;/b&gt;&lt;p&gt;Executa a verificação ortográfica do editor atual.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4424"/>
+        <location filename="../ViewManager/ViewManager.py" line="4448"/>
         <source>Edit Dictionary</source>
         <translation>Editar Dicionário</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4426"/>
+        <location filename="../ViewManager/ViewManager.py" line="4450"/>
         <source>Project Word List</source>
         <translation>Lista de Palavras do Projeto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4429"/>
+        <location filename="../ViewManager/ViewManager.py" line="4453"/>
         <source>Project Exception List</source>
         <translation>Lista de Excepções do Projeto</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4434"/>
+        <location filename="../ViewManager/ViewManager.py" line="4458"/>
         <source>User Word List</source>
         <translation>Lista de Palavras do Usuário</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4437"/>
+        <location filename="../ViewManager/ViewManager.py" line="4461"/>
         <source>User Exception List</source>
         <translation>Lista de Exceções do Usuário</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6630"/>
+        <location filename="../ViewManager/ViewManager.py" line="6654"/>
         <source>Edit Spelling Dictionary</source>
         <translation>Editar Dicionário Ortográfico</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6607"/>
+        <location filename="../ViewManager/ViewManager.py" line="6631"/>
         <source>Editing {0}</source>
         <translation>A editar {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6589"/>
+        <location filename="../ViewManager/ViewManager.py" line="6613"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6618"/>
+        <location filename="../ViewManager/ViewManager.py" line="6642"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6630"/>
+        <location filename="../ViewManager/ViewManager.py" line="6654"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation>O dicionário ortográfico foi guradado com êxito.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2955"/>
+        <location filename="../ViewManager/ViewManager.py" line="2979"/>
         <source>Search current word forward</source>
         <translation>Procurar para a frente à palavra atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2955"/>
+        <location filename="../ViewManager/ViewManager.py" line="2979"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation>Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2966"/>
+        <location filename="../ViewManager/ViewManager.py" line="2990"/>
         <source>Search next occurrence of the current word</source>
         <translation>Procurar a próxima ocurrência da palavra atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2969"/>
+        <location filename="../ViewManager/ViewManager.py" line="2993"/>
         <source>&lt;b&gt;Search current word forward&lt;/b&gt;&lt;p&gt;Search the next occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2978"/>
+        <location filename="../ViewManager/ViewManager.py" line="3002"/>
         <source>Search current word backward</source>
         <translation>Procurar para trás à palavra atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2978"/>
+        <location filename="../ViewManager/ViewManager.py" line="3002"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation>Ctrl+,</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2989"/>
+        <location filename="../ViewManager/ViewManager.py" line="3013"/>
         <source>Search previous occurrence of the current word</source>
         <translation>Procurar ocurrência anterior da palavra atual</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2992"/>
+        <location filename="../ViewManager/ViewManager.py" line="3016"/>
         <source>&lt;b&gt;Search current word backward&lt;/b&gt;&lt;p&gt;Search the previous occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Search in Open Files</source>
         <translation>Procurar em Ficheiros Abertos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Search in Open Files...</source>
         <translation>Procurar em Ficheiros Abertos...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Meta+Ctrl+Alt+F</source>
         <comment>Search|Search Open Files</comment>
         <translation>Meta+Ctrl+Alt+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3310"/>
+        <location filename="../ViewManager/ViewManager.py" line="3334"/>
         <source>Search for a text in open files</source>
         <translation>Procurar um texto nos ficheiros abertos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3312"/>
+        <location filename="../ViewManager/ViewManager.py" line="3336"/>
         <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
         <source>Replace in Open Files</source>
         <translation>Substituir em Ficheiros Abertos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
         <source>Meta+Ctrl+Alt+R</source>
         <comment>Search|Replace in Open Files</comment>
         <translation>Meta+Ctrl+Alt+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3332"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Search for a text in open files and replace it</source>
         <translation>Procurar e substituir um texto em ficheiros abertos</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3334"/>
+        <location filename="../ViewManager/ViewManager.py" line="3358"/>
         <source>&lt;b&gt;Replace in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
         <source>Replace in Open Files...</source>
         <translation>Substituir em Ficheiros Abertos...</translation>
     </message>
@@ -85751,62 +85746,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4953"/>
+        <location filename="../ViewManager/ViewManager.py" line="4977"/>
         <source>Language: {0}</source>
         <translation>Linguagem: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4960"/>
+        <location filename="../ViewManager/ViewManager.py" line="4984"/>
         <source>EOL Mode: {0}</source>
         <translation>Modo EOL: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3641"/>
+        <location filename="../ViewManager/ViewManager.py" line="3665"/>
         <source>New Document View</source>
         <translation>Novo Visor do Documento</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3641"/>
-        <source>New &amp;Document View</source>
-        <translation>Novo Visor do &amp;Documento</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3646"/>
-        <source>Open a new view of the current document</source>
-        <translation>Abrir um novo visor com o documento atual</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3648"/>
-        <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Nova Vista de Documento&lt;/b&gt;&lt;p&gt;Abre uma vista nova do documento atual. Ambas vistas mostram o mesmo documento mas, os cursores podem estar em posições independentes.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3658"/>
-        <source>New Document View (with new split)</source>
-        <translation>Nova Vista de Documento (com divisão nova)</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3665"/>
+        <source>New &amp;Document View</source>
+        <translation>Novo Visor do &amp;Documento</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3670"/>
+        <source>Open a new view of the current document</source>
+        <translation>Abrir um novo visor com o documento atual</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3672"/>
+        <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Nova Vista de Documento&lt;/b&gt;&lt;p&gt;Abre uma vista nova do documento atual. Ambas vistas mostram o mesmo documento mas, os cursores podem estar em posições independentes.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3682"/>
+        <source>New Document View (with new split)</source>
+        <translation>Nova Vista de Documento (com divisão nova)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3689"/>
         <source>Open a new view of the current document in a new split</source>
         <translation>Abrir uma nova vista do documento atual numa nova divisão</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3668"/>
+        <location filename="../ViewManager/ViewManager.py" line="3692"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Nova Vista de Documento&lt;/b&gt;&lt;p&gt;Abre uma vista nova do documento atual numa divisão nova. Ambas vistas mostram o mesmo documento mas, os cursores podem estar em posições independentes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4124"/>
+        <location filename="../ViewManager/ViewManager.py" line="4148"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4143"/>
+        <location filename="../ViewManager/ViewManager.py" line="4167"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4161"/>
+        <location filename="../ViewManager/ViewManager.py" line="4185"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -85867,65 +85862,65 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3020"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Replace and Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3020"/>
-        <source>Meta+R</source>
-        <comment>Search|Replace and Search</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3030"/>
-        <source>Replace the found text and search the next occurrence</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3033"/>
-        <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3044"/>
-        <source>Replace Occurrence</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3044"/>
-        <source>Ctrl+Meta+R</source>
-        <comment>Search|Replace Occurrence</comment>
+        <source>Meta+R</source>
+        <comment>Search|Replace and Search</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3054"/>
-        <source>Replace the found text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3056"/>
-        <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3066"/>
-        <source>Replace All</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3066"/>
-        <source>Shift+Meta+R</source>
-        <comment>Search|Replace All</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3076"/>
-        <source>Replace search text occurrences</source>
+        <source>Replace the found text and search the next occurrence</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3057"/>
+        <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <source>Replace Occurrence</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <source>Ctrl+Meta+R</source>
+        <comment>Search|Replace Occurrence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3078"/>
+        <source>Replace the found text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3080"/>
+        <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <source>Replace All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <source>Shift+Meta+R</source>
+        <comment>Search|Replace All</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
+        <source>Replace search text occurrences</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3102"/>
         <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -85951,57 +85946,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <location filename="../ViewManager/ViewManager.py" line="3638"/>
         <source>Clear all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3610"/>
+        <location filename="../ViewManager/ViewManager.py" line="3634"/>
         <source>Clear &amp;all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3616"/>
+        <location filename="../ViewManager/ViewManager.py" line="3640"/>
         <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Reverse selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Meta+Alt+R</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3774"/>
-        <source>Python AST Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3779"/>
-        <source>Show the AST for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3781"/>
-        <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3791"/>
-        <source>Python Disassembly Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Python AST Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3803"/>
+        <source>Show the AST for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3805"/>
+        <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3815"/>
+        <source>Python Disassembly Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
         <source>Show the Disassembly for the current Python file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3800"/>
+        <location filename="../ViewManager/ViewManager.py" line="3824"/>
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -86020,6 +86015,27 @@
         <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1468"/>
+        <source>Generate Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1468"/>
+        <source>Ctrl+Alt+D</source>
+        <comment>Edit|Generate Docstring</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1475"/>
+        <source>Generate a docstring for the current function/method</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1478"/>
+        <source>&lt;b&gt;Generate Docstring&lt;/b&gt;&lt;p&gt;Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
--- a/eric6/i18n/eric6_ru.ts	Fri Jan 22 16:55:43 2021 +0100
+++ b/eric6/i18n/eric6_ru.ts	Sat Jan 23 12:02:52 2021 +0100
@@ -11184,17 +11184,17 @@
         <translation>Прямоугольный комментарий</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="828"/>
+        <location filename="../QScintilla/Editor.py" line="832"/>
         <source>Select to brace</source>
         <translation>Выбрать до скобки</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="830"/>
+        <location filename="../QScintilla/Editor.py" line="834"/>
         <source>Select all</source>
         <translation>Выбрать всё</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="831"/>
+        <location filename="../QScintilla/Editor.py" line="835"/>
         <source>Deselect all</source>
         <translation>Снять выделение</translation>
     </message>
@@ -11204,12 +11204,12 @@
         <translation>Проверка орфографии...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="839"/>
+        <location filename="../QScintilla/Editor.py" line="843"/>
         <source>Check spelling of selection...</source>
         <translation>Проверка орфографии выделенного участка...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="843"/>
+        <location filename="../QScintilla/Editor.py" line="847"/>
         <source>Remove from dictionary</source>
         <translation>Удалить из словаря</translation>
     </message>
@@ -12039,12 +12039,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="849"/>
-        <source>Insert Docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8715"/>
+        <location filename="../QScintilla/Editor.py" line="8726"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
@@ -78973,1988 +78968,1988 @@
         <translation>&lt;b&gt;Подсказки&lt;/b&gt;&lt;p&gt;Показать подсказки соответствующие символам слева от курсора.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Move left one character</source>
         <translation>Перейти влево на один символ</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Left</source>
         <translation>Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1494"/>
+        <location filename="../ViewManager/ViewManager.py" line="1516"/>
         <source>Move right one character</source>
         <translation>Перейти вправо на один символ</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1494"/>
+        <location filename="../ViewManager/ViewManager.py" line="1516"/>
         <source>Right</source>
         <translation>Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1508"/>
+        <location filename="../ViewManager/ViewManager.py" line="1530"/>
         <source>Move up one line</source>
         <translation>Перейти на одну строку вверх</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1508"/>
+        <location filename="../ViewManager/ViewManager.py" line="1530"/>
         <source>Up</source>
         <translation>Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1520"/>
+        <location filename="../ViewManager/ViewManager.py" line="1542"/>
         <source>Move down one line</source>
         <translation>Перейти на одну строку вниз</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1520"/>
+        <location filename="../ViewManager/ViewManager.py" line="1542"/>
         <source>Down</source>
         <translation>Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1532"/>
+        <location filename="../ViewManager/ViewManager.py" line="1554"/>
         <source>Move left one word part</source>
         <translation>Перейти влево на одну часть слова</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1566"/>
+        <location filename="../ViewManager/ViewManager.py" line="1588"/>
         <source>Alt+Left</source>
         <translation>Alt+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1546"/>
+        <location filename="../ViewManager/ViewManager.py" line="1568"/>
         <source>Move right one word part</source>
         <translation>Перейти вправо на одну часть слова</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2446"/>
+        <location filename="../ViewManager/ViewManager.py" line="2468"/>
         <source>Alt+Right</source>
         <translation>Alt+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1560"/>
+        <location filename="../ViewManager/ViewManager.py" line="1582"/>
         <source>Move left one word</source>
         <translation>Перейти влево на одно слово</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1611"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Ctrl+Left</source>
         <translation>Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1575"/>
+        <location filename="../ViewManager/ViewManager.py" line="1597"/>
         <source>Move right one word</source>
         <translation>Перейти вправо на одно слово</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2200"/>
+        <location filename="../ViewManager/ViewManager.py" line="2222"/>
         <source>Ctrl+Right</source>
         <translation>Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2401"/>
+        <location filename="../ViewManager/ViewManager.py" line="2423"/>
         <source>Home</source>
         <translation>Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1614"/>
+        <location filename="../ViewManager/ViewManager.py" line="1636"/>
         <source>Alt+Home</source>
         <translation>Alt+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2416"/>
+        <location filename="../ViewManager/ViewManager.py" line="2438"/>
         <source>End</source>
         <translation>End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1637"/>
+        <location filename="../ViewManager/ViewManager.py" line="1659"/>
         <source>Scroll view down one line</source>
         <translation>Прокрутить на одну строку вниз</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1749"/>
         <source>Ctrl+Down</source>
         <translation>Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1649"/>
+        <location filename="../ViewManager/ViewManager.py" line="1671"/>
         <source>Scroll view up one line</source>
         <translation>Прокрутить на одну строку вверх</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1710"/>
+        <location filename="../ViewManager/ViewManager.py" line="1732"/>
         <source>Ctrl+Up</source>
         <translation>Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1660"/>
+        <location filename="../ViewManager/ViewManager.py" line="1682"/>
         <source>Move up one paragraph</source>
         <translation>Перейти на один параграф вверх</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1660"/>
+        <location filename="../ViewManager/ViewManager.py" line="1682"/>
         <source>Alt+Up</source>
         <translation>Alt+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1669"/>
+        <location filename="../ViewManager/ViewManager.py" line="1691"/>
         <source>Move down one paragraph</source>
         <translation>Перейти на один параграф вниз</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1669"/>
+        <location filename="../ViewManager/ViewManager.py" line="1691"/>
         <source>Alt+Down</source>
         <translation>Alt+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1681"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>Move up one page</source>
         <translation>Перейти на одну страницу вверх</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1681"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>PgUp</source>
         <translation>PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1690"/>
+        <location filename="../ViewManager/ViewManager.py" line="1712"/>
         <source>Move down one page</source>
         <translation>Перейти на одну страницу вниз</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1690"/>
+        <location filename="../ViewManager/ViewManager.py" line="1712"/>
         <source>PgDown</source>
         <translation>PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1713"/>
+        <location filename="../ViewManager/ViewManager.py" line="1735"/>
         <source>Ctrl+Home</source>
         <translation>Ctrl+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1730"/>
+        <location filename="../ViewManager/ViewManager.py" line="1752"/>
         <source>Ctrl+End</source>
         <translation>Ctrl+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Indent one level</source>
         <translation>Увеличить отступ</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Tab</source>
         <translation>Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1745"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Unindent one level</source>
         <translation>Уменьшить отступ</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1745"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Shift+Tab</source>
         <translation>Shift+Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1755"/>
+        <location filename="../ViewManager/ViewManager.py" line="1777"/>
         <source>Extend selection left one character</source>
         <translation>Распространить выделение на один символ влево</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1755"/>
+        <location filename="../ViewManager/ViewManager.py" line="1777"/>
         <source>Shift+Left</source>
         <translation>Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1770"/>
+        <location filename="../ViewManager/ViewManager.py" line="1792"/>
         <source>Extend selection right one character</source>
         <translation>Распространить выделение на один символ вправо</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1770"/>
+        <location filename="../ViewManager/ViewManager.py" line="1792"/>
         <source>Shift+Right</source>
         <translation>Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1785"/>
+        <location filename="../ViewManager/ViewManager.py" line="1807"/>
         <source>Extend selection up one line</source>
         <translation>Распространить выделение на одну строку вверх</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1785"/>
+        <location filename="../ViewManager/ViewManager.py" line="1807"/>
         <source>Shift+Up</source>
         <translation>Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1800"/>
+        <location filename="../ViewManager/ViewManager.py" line="1822"/>
         <source>Extend selection down one line</source>
         <translation>Распространить выделение на одну строку вниз</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1800"/>
+        <location filename="../ViewManager/ViewManager.py" line="1822"/>
         <source>Shift+Down</source>
         <translation>Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1815"/>
+        <location filename="../ViewManager/ViewManager.py" line="1837"/>
         <source>Extend selection left one word part</source>
         <translation>Распространить выделение на одну часть слова влево</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="1873"/>
+        <source>Alt+Shift+Left</source>
+        <translation>Alt+Shift+Left</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="1851"/>
-        <source>Alt+Shift+Left</source>
-        <translation>Alt+Shift+Left</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1829"/>
         <source>Extend selection right one word part</source>
         <translation>Распространить выделение на одну часть слова вправо</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2461"/>
+        <location filename="../ViewManager/ViewManager.py" line="2483"/>
         <source>Alt+Shift+Right</source>
         <translation>Alt+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1843"/>
+        <location filename="../ViewManager/ViewManager.py" line="1865"/>
         <source>Extend selection left one word</source>
         <translation>Распространить выделение на одно слово влево</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2555"/>
+        <location filename="../ViewManager/ViewManager.py" line="2577"/>
         <source>Ctrl+Shift+Left</source>
         <translation>Ctrl+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1860"/>
+        <location filename="../ViewManager/ViewManager.py" line="1882"/>
         <source>Extend selection right one word</source>
         <translation>Распространить выделение на одно слово вправо</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2217"/>
+        <location filename="../ViewManager/ViewManager.py" line="2239"/>
         <source>Ctrl+Shift+Right</source>
         <translation>Ctrl+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1889"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Shift+Home</source>
         <translation>Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2321"/>
+        <location filename="../ViewManager/ViewManager.py" line="2343"/>
         <source>Alt+Shift+Home</source>
         <translation>Alt+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1906"/>
+        <location filename="../ViewManager/ViewManager.py" line="1928"/>
         <source>Shift+End</source>
         <translation>Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1912"/>
+        <location filename="../ViewManager/ViewManager.py" line="1934"/>
         <source>Extend selection up one paragraph</source>
         <translation>Распространить выделение на один параграф вверх</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1912"/>
+        <location filename="../ViewManager/ViewManager.py" line="1934"/>
         <source>Alt+Shift+Up</source>
         <translation>Alt+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1925"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Extend selection down one paragraph</source>
         <translation>Распространить выделение на один параграф вниз</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1925"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Alt+Shift+Down</source>
         <translation>Alt+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Extend selection up one page</source>
         <translation>Распространить выделение на страницу вверх</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Shift+PgUp</source>
         <translation>Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1950"/>
+        <location filename="../ViewManager/ViewManager.py" line="1972"/>
         <source>Extend selection down one page</source>
         <translation>Распространить выделение на страницу вниз</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1950"/>
+        <location filename="../ViewManager/ViewManager.py" line="1972"/>
         <source>Shift+PgDown</source>
         <translation>Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1977"/>
+        <location filename="../ViewManager/ViewManager.py" line="1999"/>
         <source>Ctrl+Shift+Home</source>
         <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2016"/>
         <source>Ctrl+Shift+End</source>
         <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2000"/>
+        <location filename="../ViewManager/ViewManager.py" line="2022"/>
         <source>Delete previous character</source>
         <translation>Удалить предыдущий символ</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2000"/>
+        <location filename="../ViewManager/ViewManager.py" line="2022"/>
         <source>Backspace</source>
         <translation>Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2012"/>
+        <location filename="../ViewManager/ViewManager.py" line="2034"/>
         <source>Shift+Backspace</source>
         <translation>Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2031"/>
+        <location filename="../ViewManager/ViewManager.py" line="2053"/>
         <source>Delete current character</source>
         <translation>Удалить текущий символ</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2031"/>
+        <location filename="../ViewManager/ViewManager.py" line="2053"/>
         <source>Del</source>
         <translation>Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2045"/>
+        <location filename="../ViewManager/ViewManager.py" line="2067"/>
         <source>Delete word to left</source>
         <translation>Удалить слово слева</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2045"/>
+        <location filename="../ViewManager/ViewManager.py" line="2067"/>
         <source>Ctrl+Backspace</source>
         <translation>Ctrl+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2056"/>
+        <location filename="../ViewManager/ViewManager.py" line="2078"/>
         <source>Delete word to right</source>
         <translation>Удалить слово справа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2056"/>
+        <location filename="../ViewManager/ViewManager.py" line="2078"/>
         <source>Ctrl+Del</source>
         <translation>Ctrl+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2066"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Delete line to left</source>
         <translation>Удалить строку слева</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2066"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation>Ctrl+Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2077"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Delete line to right</source>
         <translation>Удалить строку справа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2086"/>
+        <location filename="../ViewManager/ViewManager.py" line="2108"/>
         <source>Ctrl+Shift+Del</source>
         <translation>Ctrl+Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Insert new line</source>
         <translation>Вставить новую строку</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Return</source>
         <translation>Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Enter</source>
         <translation>Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Insert new line below current line</source>
         <translation>Вставить новую строку после текущей</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Shift+Return</source>
         <translation>Shift+Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Shift+Enter</source>
         <translation>Shift+Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2115"/>
-        <source>Delete current line</source>
-        <translation>Удалить текущую строку</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2115"/>
-        <source>Ctrl+Shift+L</source>
-        <translation>Ctrl+Shift+L</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2126"/>
-        <source>Duplicate current line</source>
-        <translation>Дублировать текущую строку</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2126"/>
-        <source>Ctrl+D</source>
-        <translation>Ctrl+D</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2137"/>
-        <source>Swap current and previous lines</source>
-        <translation>Поменять местами предыдущую и последующую строки</translation>
+        <source>Delete current line</source>
+        <translation>Удалить текущую строку</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="2137"/>
+        <source>Ctrl+Shift+L</source>
+        <translation>Ctrl+Shift+L</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <source>Duplicate current line</source>
+        <translation>Дублировать текущую строку</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <source>Ctrl+D</source>
+        <translation>Ctrl+D</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2159"/>
+        <source>Swap current and previous lines</source>
+        <translation>Поменять местами предыдущую и последующую строки</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2159"/>
         <source>Ctrl+T</source>
         <translation>Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2160"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Cut current line</source>
         <translation>Вырезать текущую строку</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2160"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Alt+Shift+L</source>
         <translation>Alt+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2170"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Copy current line</source>
         <translation>Копировать текущую строку</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2170"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Ctrl+Shift+T</source>
         <translation>Ctrl+Shift+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
+        <location filename="../ViewManager/ViewManager.py" line="2203"/>
         <source>Toggle insert/overtype</source>
         <translation>Вставка/Замена</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
-        <source>Ins</source>
-        <translation>Ins</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2745"/>
-        <source>Convert selection to lower case</source>
-        <translation>Преобразовать выделение в нижний регистр</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2745"/>
-        <source>Alt+Shift+U</source>
-        <translation>Alt+Shift+U</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2757"/>
-        <source>Convert selection to upper case</source>
-        <translation>Преобразовать выделение в верхний регистр</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2757"/>
-        <source>Ctrl+Shift+U</source>
-        <translation>Ctrl+Shift+U</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2203"/>
+        <source>Ins</source>
+        <translation>Ins</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2767"/>
+        <source>Convert selection to lower case</source>
+        <translation>Преобразовать выделение в нижний регистр</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2767"/>
+        <source>Alt+Shift+U</source>
+        <translation>Alt+Shift+U</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2779"/>
+        <source>Convert selection to upper case</source>
+        <translation>Преобразовать выделение в верхний регистр</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2779"/>
+        <source>Ctrl+Shift+U</source>
+        <translation>Ctrl+Shift+U</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2225"/>
         <source>Alt+End</source>
         <translation>Alt+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2223"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <source>Formfeed</source>
         <translation>Перевод страницы</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2232"/>
+        <location filename="../ViewManager/ViewManager.py" line="2254"/>
         <source>Escape</source>
         <translation>Escape</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2232"/>
+        <location filename="../ViewManager/ViewManager.py" line="2254"/>
         <source>Esc</source>
         <translation>Esc</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2241"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Extend rectangular selection down one line</source>
         <translation>Распространить прямоугольное выделение на одну строку вниз</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2241"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Alt+Ctrl+Down</source>
         <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2257"/>
+        <location filename="../ViewManager/ViewManager.py" line="2279"/>
         <source>Extend rectangular selection up one line</source>
         <translation>Распространить прямоугольное выделение на одну строку вверх</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2257"/>
+        <location filename="../ViewManager/ViewManager.py" line="2279"/>
         <source>Alt+Ctrl+Up</source>
         <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2272"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Extend rectangular selection left one character</source>
         <translation>Распространить прямоугольное выделение на один символ влево</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2272"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Alt+Ctrl+Left</source>
         <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2290"/>
+        <location filename="../ViewManager/ViewManager.py" line="2312"/>
         <source>Extend rectangular selection right one character</source>
         <translation>Распространить прямоугольное выделение на один символ вправо</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2290"/>
+        <location filename="../ViewManager/ViewManager.py" line="2312"/>
         <source>Alt+Ctrl+Right</source>
         <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2346"/>
+        <location filename="../ViewManager/ViewManager.py" line="2368"/>
         <source>Extend rectangular selection up one page</source>
         <translation>Распространить прямоугольное выделение на одну страницу вверх</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2361"/>
+        <location filename="../ViewManager/ViewManager.py" line="2383"/>
         <source>Extend rectangular selection down one page</source>
         <translation>Распространить прямоугольное выделение на одну страницу вниз</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2379"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Duplicate current selection</source>
         <translation>Дублировать текущее выделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2379"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Ctrl+Shift+D</source>
         <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3352"/>
+        <location filename="../ViewManager/ViewManager.py" line="3376"/>
         <source>&amp;Search</source>
         <translation>&amp;Поиск</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2786"/>
+        <location filename="../ViewManager/ViewManager.py" line="2808"/>
         <source>&amp;Edit</source>
         <translation>П&amp;равка</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2843"/>
+        <location filename="../ViewManager/ViewManager.py" line="2867"/>
         <source>Edit</source>
         <translation>Редактировать</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3447"/>
+        <location filename="../ViewManager/ViewManager.py" line="3471"/>
         <source>Search</source>
         <translation>Поиск</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2875"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>&amp;Search...</source>
         <translation>&amp;Найти...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2875"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation>Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2883"/>
+        <location filename="../ViewManager/ViewManager.py" line="2907"/>
         <source>Search for a text</source>
         <translation>Поиск текста</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2885"/>
+        <location filename="../ViewManager/ViewManager.py" line="2909"/>
         <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Поиск&lt;/b&gt;
 &lt;p&gt;Поиск текста в текущем редакторе. Отображается диалог для ввода искомого текста и настройки поиска.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Search next</source>
         <translation>Найти следующее</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Search &amp;next</source>
         <translation>&amp;Следующее</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation>F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2904"/>
+        <location filename="../ViewManager/ViewManager.py" line="2928"/>
         <source>Search next occurrence of text</source>
         <translation>Поиск следующего вхождения текста</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2906"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Поиск следующего&lt;/b&gt;&lt;p&gt;Поиск следующего вхождения текста в текущем редакторе. Используются предыдущий искомый текст и настройки поиска.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Search previous</source>
         <translation>Найти предыдущее</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Search &amp;previous</source>
         <translation>&amp;Предыдущее</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation>Shift+F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2924"/>
+        <location filename="../ViewManager/ViewManager.py" line="2948"/>
         <source>Search previous occurrence of text</source>
         <translation>Поиск предыдущего вхождения текста</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2926"/>
+        <location filename="../ViewManager/ViewManager.py" line="2950"/>
         <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Поиск предыдущего&lt;/b&gt;&lt;p&gt;Поиск предыдущего вхождения текста в текущем редакторе. Используются предыдущий искомый текст и настройки поиска.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2936"/>
+        <location filename="../ViewManager/ViewManager.py" line="2960"/>
         <source>Clear search markers</source>
         <translation>Убрать подсветку найденого</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2936"/>
+        <location filename="../ViewManager/ViewManager.py" line="2960"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation>Ctrl+3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2944"/>
+        <location filename="../ViewManager/ViewManager.py" line="2968"/>
         <source>Clear all displayed search markers</source>
         <translation>Убрать подсветку всех результатов поиска</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2946"/>
+        <location filename="../ViewManager/ViewManager.py" line="2970"/>
         <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Убрать подсветку поиска&lt;/b&gt;&lt;p&gt;Удаление подсветки всех результатов поиска.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>Replace</source>
         <translation>Заменить</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>&amp;Replace...</source>
         <translation>&amp;Заменить...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation>Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3008"/>
+        <location filename="../ViewManager/ViewManager.py" line="3032"/>
         <source>Replace some text</source>
         <translation>Заменить заданный текст</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3010"/>
+        <location filename="../ViewManager/ViewManager.py" line="3034"/>
         <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Заменить&lt;/b&gt;
 &lt;p&gt;Поиск в текущем редакторе заданного текста и его замена. Отображается диалог ввода искомого текста, текста замены и настроек поиска и замены&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3387"/>
+        <location filename="../ViewManager/ViewManager.py" line="3411"/>
         <source>Quicksearch</source>
         <translation>Быстрый поиск</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3088"/>
+        <location filename="../ViewManager/ViewManager.py" line="3112"/>
         <source>&amp;Quicksearch</source>
         <translation>&amp;Быстрый поиск</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3088"/>
+        <location filename="../ViewManager/ViewManager.py" line="3112"/>
         <source>Ctrl+Shift+K</source>
         <comment>Search|Quicksearch</comment>
         <translation>Ctrl+Shift+K</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3096"/>
+        <location filename="../ViewManager/ViewManager.py" line="3120"/>
         <source>Perform a quicksearch</source>
         <translation>Выполнить быстрый поиск</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3098"/>
-        <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Быстрый поиск&lt;/b&gt;&lt;p&gt;Активизация быстрого поиска путем перемещения фокуса на поле ввода быстрого поиска. Если это поле уже активно и содержит какой-нибудь текст, то выполняется поиск следующего вхождения этого текста.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
-        <source>Quicksearch backwards</source>
-        <translation>Быстрый поиск назад</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
-        <source>Quicksearch &amp;backwards</source>
-        <translation>Быстрый поиск &amp;назад</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
-        <source>Ctrl+Shift+J</source>
-        <comment>Search|Quicksearch backwards</comment>
-        <translation>Ctrl+Shift+J</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3119"/>
-        <source>Perform a quicksearch backwards</source>
-        <translation>Выполнить быстрый поиск назад</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3122"/>
+        <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Быстрый поиск&lt;/b&gt;&lt;p&gt;Активизация быстрого поиска путем перемещения фокуса на поле ввода быстрого поиска. Если это поле уже активно и содержит какой-нибудь текст, то выполняется поиск следующего вхождения этого текста.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <source>Quicksearch backwards</source>
+        <translation>Быстрый поиск назад</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <source>Quicksearch &amp;backwards</source>
+        <translation>Быстрый поиск &amp;назад</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
+        <source>Ctrl+Shift+J</source>
+        <comment>Search|Quicksearch backwards</comment>
+        <translation>Ctrl+Shift+J</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3143"/>
+        <source>Perform a quicksearch backwards</source>
+        <translation>Выполнить быстрый поиск назад</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3146"/>
         <source>&lt;b&gt;Quicksearch backwards&lt;/b&gt;&lt;p&gt;This searches the previous occurrence of the quicksearch text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Быстрый поиск назад&lt;/b&gt;&lt;p&gt;Поиск предыдущего вхождения текста из поля ввода текста для быстрого поиска.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Quicksearch extend</source>
         <translation>Расширить быстрый поиск</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Quicksearch e&amp;xtend</source>
         <translation>Рас&amp;ширить быстрый поиск</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Ctrl+Shift+H</source>
         <comment>Search|Quicksearch extend</comment>
         <translation>Ctrl+Shift+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3139"/>
+        <location filename="../ViewManager/ViewManager.py" line="3163"/>
         <source>Extend the quicksearch to the end of the current word</source>
         <translation>Расширить быстрый поиск до конца текущего слова</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3142"/>
+        <location filename="../ViewManager/ViewManager.py" line="3166"/>
         <source>&lt;b&gt;Quicksearch extend&lt;/b&gt;&lt;p&gt;This extends the quicksearch text to the end of the word currently found.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Продлить быстрый поиск&lt;/b&gt;
 &lt;p&gt;Продление быстрого поиска текста до конца текущего найденного слова.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3160"/>
+        <location filename="../ViewManager/ViewManager.py" line="3184"/>
         <source>Goto Line</source>
         <translation>Перейти на строку</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <location filename="../ViewManager/ViewManager.py" line="3176"/>
         <source>&amp;Goto Line...</source>
         <translation>&amp;Перейти на строку...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <location filename="../ViewManager/ViewManager.py" line="3176"/>
         <source>Ctrl+G</source>
         <comment>Search|Goto Line</comment>
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3162"/>
+        <location filename="../ViewManager/ViewManager.py" line="3186"/>
         <source>&lt;b&gt;Goto Line&lt;/b&gt;&lt;p&gt;Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Перейти на строку&lt;/b&gt;
 &lt;p&gt;Перейти на указанную строку текущего редактора. Будет показан диалог ввода номера строки.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <location filename="../ViewManager/ViewManager.py" line="3203"/>
         <source>Goto Brace</source>
         <translation>Перейти к скобке</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <location filename="../ViewManager/ViewManager.py" line="3195"/>
         <source>Goto &amp;Brace</source>
         <translation>Перейти к &amp;скобке</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <location filename="../ViewManager/ViewManager.py" line="3195"/>
         <source>Ctrl+L</source>
         <comment>Search|Goto Brace</comment>
         <translation>Ctrl+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3181"/>
+        <location filename="../ViewManager/ViewManager.py" line="3205"/>
         <source>&lt;b&gt;Goto Brace&lt;/b&gt;&lt;p&gt;Go to the matching brace in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Перейти к скобке&lt;/b&gt;
 &lt;p&gt;Переход к соответствующей скобке.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Search in Files</source>
         <translation>Поиск в файлах</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Search in &amp;Files...</source>
         <translation>Найти в &amp;файлах...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation>Shift+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3267"/>
+        <location filename="../ViewManager/ViewManager.py" line="3291"/>
         <source>Search for a text in files</source>
         <translation>Поиск заданного текста в файлах</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3269"/>
+        <location filename="../ViewManager/ViewManager.py" line="3293"/>
         <source>&lt;b&gt;Search in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Поиск в файлах&lt;/b&gt;
 &lt;p&gt;Поиск заданного текста в файлах дерева директорий или проекта. Отображение диалога ввода искомого текста, опций поиска и отображения результатов.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Replace in Files</source>
         <translation>Заменить в файлах</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Replace in F&amp;iles...</source>
         <translation>Заменить в ф&amp;айлах...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation>Shift+Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3286"/>
+        <location filename="../ViewManager/ViewManager.py" line="3310"/>
         <source>Search for a text in files and replace it</source>
         <translation>Поиск заданного текста в файлах и его замена</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3288"/>
+        <location filename="../ViewManager/ViewManager.py" line="3312"/>
         <source>&lt;b&gt;Replace in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Заменить в файлах&lt;/b&gt;&lt;p&gt;Поиск заданного текста в файлах дерева директорий или проекта и его замена. Отображение диалога ввода искомого текста, текста замены, настроек поиска и отображение результата.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3406"/>
+        <location filename="../ViewManager/ViewManager.py" line="3430"/>
         <source>&lt;p&gt;Enter the searchtext directly into this field. The search will be performed case insensitive. The quicksearch function is activated upon activation of the quicksearch next action (default key Ctrl+Shift+K), if this entry field does not have the input focus. Otherwise it searches for the next occurrence of the text entered. The quicksearch backwards action (default key Ctrl+Shift+J) searches backward. Activating the &apos;quicksearch extend&apos; action (default key Ctrl+Shift+H) extends the current searchtext to the end of the currently found word. The quicksearch can be ended by pressing the Return key while the quicksearch entry has the the input focus.&lt;/p&gt;</source>
         <translation>&lt;p&gt;Введите текст поиска непосредственно в этом поле. Поиск будет выполняться без учёта регистра. Функция быстрого поиска активизируется при запуске быстрого поиска (по умолчанию клавиш Ctrl+Shift+K). если в этом поле не находится фокус ввода. В противном случае выполняется поиск следующего вхождения заданного текста. Быстрый поиск назад (по умолчанию клавиш Ctrl+Shift+J) выполняет поиск назад. Активация действия &apos;продлить быстрый поиск&apos; (по умолчанию клавиш Ctrl+Shift+H) продляет действие текущего шаблона поиска до конца текущего найденного слова. Если поле ввода быстрого поиска активно, то выйти из режима поиска можно просто нажав клавишу &quot;Ввод&quot;.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3433"/>
+        <location filename="../ViewManager/ViewManager.py" line="3457"/>
         <source>Quicksearch Textedit</source>
         <translation>Быстрый поиск</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom in</source>
         <translation>Увеличить масштаб</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom &amp;in</source>
         <translation>У&amp;величить масштаб</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3496"/>
+        <location filename="../ViewManager/ViewManager.py" line="3520"/>
         <source>Zoom in on the text</source>
         <translation>Увеличить масштаб текста</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3498"/>
+        <location filename="../ViewManager/ViewManager.py" line="3522"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Увеличить масштаб&lt;/b&gt;&lt;p&gt;Увеличить масштаб. Размер букв увеличится.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom out</source>
         <translation>Уменьшить масштаб</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom &amp;out</source>
         <translation>У&amp;меньшить масштаб</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3515"/>
+        <location filename="../ViewManager/ViewManager.py" line="3539"/>
         <source>Zoom out on the text</source>
         <translation>Уменьшить масштаб текста</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3517"/>
+        <location filename="../ViewManager/ViewManager.py" line="3541"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Уменьшить масштаб&lt;/b&gt;&lt;p&gt;Уменьшить масштаб. Размер букв уменьшится.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>Zoom</source>
         <translation>Масштаб</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>&amp;Zoom</source>
         <translation>Мас&amp;штаб</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation>Ctrl+#</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3552"/>
+        <location filename="../ViewManager/ViewManager.py" line="3576"/>
         <source>Zoom the text</source>
         <translation>Масштаб текста</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3554"/>
+        <location filename="../ViewManager/ViewManager.py" line="3578"/>
         <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Масштаб&lt;/b&gt;
 &lt;p&gt;Масштаб текста. Открытие диалога для выбора желаемого масштаба текста.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3567"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Toggle all folds</source>
         <translation>Свернуть/Развернуть все свертки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <location filename="../ViewManager/ViewManager.py" line="3587"/>
         <source>&amp;Toggle all folds</source>
         <translation>&amp;Свернуть/Развернуть все свертки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3569"/>
+        <location filename="../ViewManager/ViewManager.py" line="3593"/>
         <source>&lt;b&gt;Toggle all folds&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Свернуть/Развернуть все свертки&lt;/b&gt;&lt;p&gt;Свернуть/Развернуть все свертки текущего редактора.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <location filename="../ViewManager/ViewManager.py" line="3607"/>
         <source>Toggle all folds (including children)</source>
         <translation>Свернуть/Развернуть все свёртки (включая дочерние)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3577"/>
-        <source>Toggle all &amp;folds (including children)</source>
-        <translation>Свернуть/Развернуть все &amp;свёртки (включая дочерние)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3585"/>
-        <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Свернуть/Развернуть все свёртки (включая дочерние)&lt;/b&gt;&lt;p&gt;Свернуть/Развернуть все свёртки в текущем редакторе, включая все дочерние.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3599"/>
-        <source>Toggle current fold</source>
-        <translation>Свернуть/Развернуть текущую свертку</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3595"/>
-        <source>Toggle &amp;current fold</source>
-        <translation>Свернуть/Развернуть &amp;текущую свертку</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3601"/>
+        <source>Toggle all &amp;folds (including children)</source>
+        <translation>Свернуть/Развернуть все &amp;свёртки (включая дочерние)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3609"/>
+        <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Свернуть/Развернуть все свёртки (включая дочерние)&lt;/b&gt;&lt;p&gt;Свернуть/Развернуть все свёртки в текущем редакторе, включая все дочерние.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3623"/>
+        <source>Toggle current fold</source>
+        <translation>Свернуть/Развернуть текущую свертку</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3619"/>
+        <source>Toggle &amp;current fold</source>
+        <translation>Свернуть/Развернуть &amp;текущую свертку</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3625"/>
         <source>&lt;b&gt;Toggle current fold&lt;/b&gt;&lt;p&gt;Toggle the folds of the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Свернуть/Развернуть текущую свертку&lt;/b&gt;&lt;p&gt;Свернуть/Развернуть свертку текущей строки текущего редактора.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3631"/>
+        <location filename="../ViewManager/ViewManager.py" line="3655"/>
         <source>Remove all highlights</source>
         <translation>Снять все выделения</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3633"/>
+        <location filename="../ViewManager/ViewManager.py" line="3657"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Снять все выделения&lt;/b&gt;&lt;p&gt;Снять выделения во всех редакторах.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3703"/>
         <source>Split view</source>
         <translation>Разделить окно</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3703"/>
         <source>&amp;Split view</source>
         <translation>&amp;Разделить окно</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3684"/>
+        <location filename="../ViewManager/ViewManager.py" line="3708"/>
         <source>Add a split to the view</source>
         <translation>Разделить текущее окно</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3686"/>
+        <location filename="../ViewManager/ViewManager.py" line="3710"/>
         <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Разделить окно&lt;/b&gt;&lt;p&gt;Разделение текущего окна.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3694"/>
+        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>Arrange horizontally</source>
         <translation>Расположить окна горизонтально</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3694"/>
+        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>Arrange &amp;horizontally</source>
         <translation>Расположить окна &amp;горизонтально</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3698"/>
+        <location filename="../ViewManager/ViewManager.py" line="3722"/>
         <source>Arrange the splitted views horizontally</source>
         <translation>Расположить разделённые окна горизонтально</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3700"/>
+        <location filename="../ViewManager/ViewManager.py" line="3724"/>
         <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Расположить горизонтально&lt;/b&gt;
 &lt;p&gt;Расположить разделённые окна горизонтально.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3709"/>
+        <location filename="../ViewManager/ViewManager.py" line="3733"/>
         <source>Remove split</source>
         <translation>Отменить разделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3709"/>
+        <location filename="../ViewManager/ViewManager.py" line="3733"/>
         <source>&amp;Remove split</source>
         <translation>&amp;Отменить разделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3714"/>
+        <location filename="../ViewManager/ViewManager.py" line="3738"/>
         <source>Remove the current split</source>
         <translation>Отменить текущее разделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3716"/>
+        <location filename="../ViewManager/ViewManager.py" line="3740"/>
         <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Отменить разделение&lt;/b&gt;&lt;p&gt;Отмена текущего разделения.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3724"/>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
         <source>Next split</source>
         <translation>Следующее разделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3724"/>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
         <source>&amp;Next split</source>
         <translation>&amp;Следующее разделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3724"/>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation>Ctrl+Alt+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3731"/>
+        <location filename="../ViewManager/ViewManager.py" line="3755"/>
         <source>Move to the next split</source>
         <translation>Перейти в следующее разделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3733"/>
+        <location filename="../ViewManager/ViewManager.py" line="3757"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Следующее разделение&lt;/b&gt;&lt;p&gt;Перейти в следующее разделение.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>Previous split</source>
         <translation>Предыдущее разделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>&amp;Previous split</source>
         <translation>&amp;Предыдущее разделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation>Ctrl+Alt+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3747"/>
+        <location filename="../ViewManager/ViewManager.py" line="3771"/>
         <source>Move to the previous split</source>
         <translation>Перейти в предыдущее разделение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3749"/>
+        <location filename="../ViewManager/ViewManager.py" line="3773"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Предыдущее разделение&lt;/b&gt;&lt;p&gt;Перейти в предыдущее разделение.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3833"/>
+        <location filename="../ViewManager/ViewManager.py" line="3857"/>
         <source>&amp;View</source>
         <translation>&amp;Вид</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3870"/>
+        <location filename="../ViewManager/ViewManager.py" line="3894"/>
         <source>View</source>
         <translation>Вид</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3906"/>
+        <location filename="../ViewManager/ViewManager.py" line="3930"/>
         <source>Start Macro Recording</source>
         <translation>Начать запись макроса</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3900"/>
+        <location filename="../ViewManager/ViewManager.py" line="3924"/>
         <source>S&amp;tart Macro Recording</source>
         <translation>&amp;Начать запись макроса</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3908"/>
+        <location filename="../ViewManager/ViewManager.py" line="3932"/>
         <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Начать запись макроса&lt;/b&gt;
 &lt;p&gt;Начать запись команд редактора в новый макрос.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
-        <source>Stop Macro Recording</source>
-        <translation>Закончить запись макроса</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3916"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation>&amp;Закончить запись макроса</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3922"/>
-        <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Закончить запись макроса&lt;/b&gt;
-&lt;p&gt;Закончить запись команд редактора в новый макрос.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3934"/>
-        <source>Run Macro</source>
-        <translation>Выполнить макрос</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3930"/>
-        <source>&amp;Run Macro</source>
-        <translation>&amp;Выполнить макрос</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3936"/>
-        <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Выполнить макрос&lt;/b&gt;
-&lt;p&gt;Запустить записанный макрос.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3948"/>
-        <source>Delete Macro</source>
-        <translation>Удалить макрос</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3944"/>
-        <source>&amp;Delete Macro</source>
-        <translation>&amp;Удалить макрос</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3950"/>
-        <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Удалить макрос&lt;/b&gt;&lt;p&gt;Удалить записанный макрос.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3962"/>
-        <source>Load Macro</source>
-        <translation>Загрузить макрос</translation>
+        <source>Stop Macro Recording</source>
+        <translation>Закончить запись макроса</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3940"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation>&amp;Закончить запись макроса</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3946"/>
+        <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Закончить запись макроса&lt;/b&gt;
+&lt;p&gt;Закончить запись команд редактора в новый макрос.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3958"/>
-        <source>&amp;Load Macro</source>
-        <translation>&amp;Загрузить макрос</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3964"/>
-        <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Загрузить макрос&lt;/b&gt;
-&lt;p&gt;Загрузить из файла макрос для редактора.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3976"/>
-        <source>Save Macro</source>
-        <translation>Сохранить макрос</translation>
+        <source>Run Macro</source>
+        <translation>Выполнить макрос</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3954"/>
+        <source>&amp;Run Macro</source>
+        <translation>&amp;Выполнить макрос</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3960"/>
+        <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Выполнить макрос&lt;/b&gt;
+&lt;p&gt;Запустить записанный макрос.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3972"/>
+        <source>Delete Macro</source>
+        <translation>Удалить макрос</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3968"/>
+        <source>&amp;Delete Macro</source>
+        <translation>&amp;Удалить макрос</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3974"/>
+        <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Удалить макрос&lt;/b&gt;&lt;p&gt;Удалить записанный макрос.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3986"/>
+        <source>Load Macro</source>
+        <translation>Загрузить макрос</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3982"/>
+        <source>&amp;Load Macro</source>
+        <translation>&amp;Загрузить макрос</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3988"/>
+        <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Загрузить макрос&lt;/b&gt;
+&lt;p&gt;Загрузить из файла макрос для редактора.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4000"/>
+        <source>Save Macro</source>
+        <translation>Сохранить макрос</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3996"/>
         <source>&amp;Save Macro</source>
         <translation>&amp;Сохранить макрос</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3978"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Сохранить макрос&lt;/b&gt;&lt;p&gt;Сохранить записанный макрос в файл.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3994"/>
+        <location filename="../ViewManager/ViewManager.py" line="4018"/>
         <source>&amp;Macros</source>
         <translation>&amp;Макросы</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4020"/>
+        <location filename="../ViewManager/ViewManager.py" line="4044"/>
         <source>Toggle Bookmark</source>
         <translation>Создать/Удалить закладку</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
         <source>&amp;Toggle Bookmark</source>
         <translation>&amp;Создать/Удалить закладку</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation>Alt+Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4022"/>
+        <location filename="../ViewManager/ViewManager.py" line="4046"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Создать/Удалить закладку&lt;/b&gt;&lt;p&gt;Создать/Удалить закладку на текущей строке текущего редактора.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4039"/>
+        <location filename="../ViewManager/ViewManager.py" line="4063"/>
         <source>Next Bookmark</source>
         <translation>Следующая закладка</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>&amp;Next Bookmark</source>
         <translation>&amp;Следующая закладка</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation>Ctrl+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4041"/>
+        <location filename="../ViewManager/ViewManager.py" line="4065"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Следующая закладка&lt;/b&gt;
 &lt;p&gt;Переход к следующей закладке в текущем редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <location filename="../ViewManager/ViewManager.py" line="4081"/>
         <source>Previous Bookmark</source>
         <translation>Предыдущая закладка</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <location filename="../ViewManager/ViewManager.py" line="4073"/>
         <source>&amp;Previous Bookmark</source>
         <translation>&amp;Предыдущая закладка</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <location filename="../ViewManager/ViewManager.py" line="4073"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation>Ctrl+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4059"/>
+        <location filename="../ViewManager/ViewManager.py" line="4083"/>
         <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Предыдущая закладка&lt;/b&gt;
 &lt;p&gt;Переход к предыдущей закладке в текущем редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4074"/>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <source>Clear Bookmarks</source>
         <translation>Стереть закладки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4091"/>
         <source>&amp;Clear Bookmarks</source>
         <translation>&amp;Стереть закладки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4091"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation>Alt+Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4076"/>
+        <location filename="../ViewManager/ViewManager.py" line="4100"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Стереть закладки&lt;/b&gt;&lt;p&gt;Убрать закладки из всех редакторов.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <location filename="../ViewManager/ViewManager.py" line="4114"/>
         <source>Goto Syntax Error</source>
         <translation>Перейти к синтаксической ошибке</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4084"/>
+        <location filename="../ViewManager/ViewManager.py" line="4108"/>
         <source>&amp;Goto Syntax Error</source>
         <translation>&amp;Перейти к синтаксической ошибке</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4092"/>
-        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Перейти к синтаксической ошибке&lt;/b&gt;
-&lt;p&gt;Переход к следующей синтаксической ошибке в текущем редакторе.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4105"/>
-        <source>Clear Syntax Errors</source>
-        <translation>Очистить синтаксические ошибки</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4100"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>Очистить синтаксические &amp;ошибки</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4107"/>
-        <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Очистить синтаксические ошибки&lt;/b&gt;&lt;p&gt;Убрать сообщения об синтаксических ошибках во всех редакторах.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4122"/>
-        <source>Next warning message</source>
-        <translation>Следующее предупреждение</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4116"/>
+        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Перейти к синтаксической ошибке&lt;/b&gt;
+&lt;p&gt;Переход к следующей синтаксической ошибке в текущем редакторе.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4129"/>
+        <source>Clear Syntax Errors</source>
+        <translation>Очистить синтаксические ошибки</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4124"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>Очистить синтаксические &amp;ошибки</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4131"/>
+        <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Очистить синтаксические ошибки&lt;/b&gt;&lt;p&gt;Убрать сообщения об синтаксических ошибках во всех редакторах.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4146"/>
+        <source>Next warning message</source>
+        <translation>Следующее предупреждение</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4140"/>
         <source>&amp;Next warning message</source>
         <translation>&amp;Следующее предупреждение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4141"/>
+        <location filename="../ViewManager/ViewManager.py" line="4165"/>
         <source>Previous warning message</source>
         <translation>Предыдущее предупреждение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4133"/>
+        <location filename="../ViewManager/ViewManager.py" line="4157"/>
         <source>&amp;Previous warning message</source>
         <translation>&amp;Предыдущее предупреждение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4159"/>
+        <location filename="../ViewManager/ViewManager.py" line="4183"/>
         <source>Clear Warning Messages</source>
         <translation>Очистить предупреждения</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4152"/>
+        <location filename="../ViewManager/ViewManager.py" line="4176"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>&amp;Очистить предупреждения</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4175"/>
+        <location filename="../ViewManager/ViewManager.py" line="4199"/>
         <source>Next uncovered line</source>
         <translation>Следующая неохваченная строка</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4169"/>
+        <location filename="../ViewManager/ViewManager.py" line="4193"/>
         <source>&amp;Next uncovered line</source>
         <translation>&amp;Следующая неохваченная строка</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4177"/>
+        <location filename="../ViewManager/ViewManager.py" line="4201"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Следующая неохваченная строка&lt;/b&gt;&lt;p&gt;Переход к строке текущего редактора, помеченной как неохваченная.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4194"/>
+        <location filename="../ViewManager/ViewManager.py" line="4218"/>
         <source>Previous uncovered line</source>
         <translation>Предыдущая неохваченная строка</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4186"/>
+        <location filename="../ViewManager/ViewManager.py" line="4210"/>
         <source>&amp;Previous uncovered line</source>
         <translation>&amp;Предыдущая неохваченная строка</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4196"/>
+        <location filename="../ViewManager/ViewManager.py" line="4220"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Следующая неохваченная строка&lt;/b&gt;&lt;p&gt;Перейти предыдущей к строке в текущем редакторе, помеченной как неохваченная.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4236"/>
         <source>Next Task</source>
         <translation>Следующая задача</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4206"/>
+        <location filename="../ViewManager/ViewManager.py" line="4230"/>
         <source>&amp;Next Task</source>
         <translation>&amp;Следующая задача</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4214"/>
+        <location filename="../ViewManager/ViewManager.py" line="4238"/>
         <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Следующая задача&lt;/b&gt;
 &lt;p&gt;Переход к следующей строке редактора, где определена задача.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4229"/>
+        <location filename="../ViewManager/ViewManager.py" line="4253"/>
         <source>Previous Task</source>
         <translation>Предыдущая задача</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4222"/>
+        <location filename="../ViewManager/ViewManager.py" line="4246"/>
         <source>&amp;Previous Task</source>
         <translation>&amp;Предыдущая задача</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4255"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Предыдущая задача&lt;/b&gt;&lt;p&gt;Переход к предыдущей строке редактора, где определена задача.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4285"/>
+        <location filename="../ViewManager/ViewManager.py" line="4309"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Закладки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4355"/>
         <source>Bookmarks</source>
         <translation>Закладки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4373"/>
+        <location filename="../ViewManager/ViewManager.py" line="4397"/>
         <source>Perform spell check of current editor</source>
         <translation>Проверить орфографию в текущем редакторе</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4383"/>
+        <location filename="../ViewManager/ViewManager.py" line="4407"/>
         <source>Automatic spell checking</source>
         <translation>Автоматическая проверка орфографии</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4383"/>
+        <location filename="../ViewManager/ViewManager.py" line="4407"/>
         <source>&amp;Automatic spell checking</source>
         <translation>&amp;Автоматическая проверка орфографии</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4391"/>
+        <location filename="../ViewManager/ViewManager.py" line="4415"/>
         <source>(De-)Activate automatic spell checking</source>
         <translation>Разрешить/Запретить автоматическую проверку орфографии</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4393"/>
+        <location filename="../ViewManager/ViewManager.py" line="4417"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Автоматическая проверка орфографии&lt;/b&gt;&lt;p&gt;Запретить или разрешить автоматическую проверку орфографии.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4460"/>
+        <location filename="../ViewManager/ViewManager.py" line="4484"/>
         <source>Spelling</source>
         <translation>Проверка орфографии</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4483"/>
+        <location filename="../ViewManager/ViewManager.py" line="4507"/>
         <source>Open files</source>
         <translation>Открыть файлы</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4527"/>
+        <location filename="../ViewManager/ViewManager.py" line="4551"/>
         <source>File Modified</source>
         <translation>Файл изменён</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4527"/>
+        <location filename="../ViewManager/ViewManager.py" line="4551"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;В файле &lt;b&gt;{0}&lt;/b&gt; есть несохранённые изменения.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4926"/>
+        <location filename="../ViewManager/ViewManager.py" line="4950"/>
         <source>Line: {0:5}</source>
         <translation>Строка: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4932"/>
+        <location filename="../ViewManager/ViewManager.py" line="4956"/>
         <source>Pos: {0:5}</source>
         <translation>Позиция: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5371"/>
+        <location filename="../ViewManager/ViewManager.py" line="5395"/>
         <source>&amp;Clear</source>
         <translation>&amp;Очистить</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5365"/>
+        <location filename="../ViewManager/ViewManager.py" line="5389"/>
         <source>&amp;Add</source>
         <translation>&amp;Добавить</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5368"/>
+        <location filename="../ViewManager/ViewManager.py" line="5392"/>
         <source>&amp;Edit...</source>
         <translation>&amp;Правка...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3200"/>
+        <location filename="../ViewManager/ViewManager.py" line="3224"/>
         <source>Goto Last Edit Location</source>
         <translation>Перейти к месту последнего редактирования</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3213"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation>П&amp;ерейти к месту последнего редактирования</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3213"/>
         <source>Ctrl+Shift+G</source>
         <comment>Search|Goto Last Edit Location</comment>
         <translation>Ctrl+Shift+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3203"/>
+        <location filename="../ViewManager/ViewManager.py" line="3227"/>
         <source>&lt;b&gt;Goto Last Edit Location&lt;/b&gt;&lt;p&gt;Go to the location of the last edit in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Перейти к месту последнего редактирования&lt;/b&gt;&lt;p&gt;Переход к месту последнего редактирования в текущем редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3212"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Goto Previous Method or Class</source>
         <translation>Перейти к предыдущему методу или классу</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3212"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Ctrl+Shift+Up</source>
         <comment>Search|Goto Previous Method or Class</comment>
         <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3222"/>
-        <source>Go to the previous method or class definition</source>
-        <translation>Перейти к предыдущему объявлению метода или класса</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3226"/>
-        <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Перейти к предыдущему методу или классу&lt;/b&gt;&lt;p&gt;Переход к предыдущему объявлению метода или класса и подсветка его имени.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3236"/>
-        <source>Goto Next Method or Class</source>
-        <translation>Перейти к следующему методу или классу</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3236"/>
-        <source>Ctrl+Shift+Down</source>
-        <comment>Search|Goto Next Method or Class</comment>
-        <translation>Ctrl+Shift+Down</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3246"/>
+        <source>Go to the previous method or class definition</source>
+        <translation>Перейти к предыдущему объявлению метода или класса</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3250"/>
+        <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Перейти к предыдущему методу или классу&lt;/b&gt;&lt;p&gt;Переход к предыдущему объявлению метода или класса и подсветка его имени.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3260"/>
+        <source>Goto Next Method or Class</source>
+        <translation>Перейти к следующему методу или классу</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3260"/>
+        <source>Ctrl+Shift+Down</source>
+        <comment>Search|Goto Next Method or Class</comment>
+        <translation>Ctrl+Shift+Down</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3270"/>
         <source>Go to the next method or class definition</source>
         <translation>Перейти к следующему объявлению метода или класса</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3248"/>
+        <location filename="../ViewManager/ViewManager.py" line="3272"/>
         <source>&lt;b&gt;Goto Next Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the next method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Перейти к следующему методу или классу&lt;/b&gt;&lt;p&gt;Переход к следующему объявлению метода или класса и подсветка его имени.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3757"/>
+        <location filename="../ViewManager/ViewManager.py" line="3781"/>
         <source>Preview</source>
         <translation>Предварительный просмотр</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3762"/>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <source>Preview the current file in the web browser</source>
         <translation>Предварительный просмотр текущего файла в web-браузере</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3764"/>
+        <location filename="../ViewManager/ViewManager.py" line="3788"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Предварительный просмотр&lt;/b&gt;&lt;p&gt;Предварительный просмотр текущего файла в web-браузере.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1489"/>
+        <location filename="../ViewManager/ViewManager.py" line="1511"/>
         <source>Meta+B</source>
         <translation>Meta+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1502"/>
+        <location filename="../ViewManager/ViewManager.py" line="1524"/>
         <source>Meta+F</source>
         <translation>Meta+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1514"/>
+        <location filename="../ViewManager/ViewManager.py" line="1536"/>
         <source>Meta+P</source>
         <translation>Meta+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1526"/>
+        <location filename="../ViewManager/ViewManager.py" line="1548"/>
         <source>Meta+N</source>
         <translation>Meta+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1587"/>
+        <location filename="../ViewManager/ViewManager.py" line="1609"/>
         <source>Move to first visible character in document line</source>
         <translation>Перейти к первому видимому символу в строке документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1603"/>
+        <location filename="../ViewManager/ViewManager.py" line="1625"/>
         <source>Move to start of display line</source>
         <translation>Перейти на начало строки экрана</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1620"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Move to end of document line</source>
         <translation>Перейти на конец строки документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1628"/>
+        <location filename="../ViewManager/ViewManager.py" line="1650"/>
         <source>Meta+E</source>
         <translation>Meta+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1696"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Meta+V</source>
         <translation>Meta+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1702"/>
+        <location filename="../ViewManager/ViewManager.py" line="1724"/>
         <source>Move to start of document</source>
         <translation>Перейти на начало документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1719"/>
+        <location filename="../ViewManager/ViewManager.py" line="1741"/>
         <source>Move to end of document</source>
         <translation>Перейти на конец документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1764"/>
+        <location filename="../ViewManager/ViewManager.py" line="1786"/>
         <source>Meta+Shift+B</source>
         <translation>Meta+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1779"/>
+        <location filename="../ViewManager/ViewManager.py" line="1801"/>
         <source>Meta+Shift+F</source>
         <translation>Meta+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1794"/>
+        <location filename="../ViewManager/ViewManager.py" line="1816"/>
         <source>Meta+Shift+P</source>
         <translation>Meta+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1809"/>
+        <location filename="../ViewManager/ViewManager.py" line="1831"/>
         <source>Meta+Shift+N</source>
         <translation>Meta+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1877"/>
+        <location filename="../ViewManager/ViewManager.py" line="1899"/>
         <source>Extend selection to first visible character in document line</source>
         <translation>Распространить выделение до первого видимого символа в строке документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1895"/>
+        <location filename="../ViewManager/ViewManager.py" line="1917"/>
         <source>Extend selection to end of document line</source>
         <translation>Распространить выделение до конца строки документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1903"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Meta+Shift+E</source>
         <translation>Meta+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1960"/>
+        <location filename="../ViewManager/ViewManager.py" line="1982"/>
         <source>Meta+Shift+V</source>
         <translation>Meta+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1966"/>
+        <location filename="../ViewManager/ViewManager.py" line="1988"/>
         <source>Extend selection to start of document</source>
         <translation>Распространить выделение до начала документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1974"/>
+        <location filename="../ViewManager/ViewManager.py" line="1996"/>
         <source>Ctrl+Shift+Up</source>
         <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1983"/>
+        <location filename="../ViewManager/ViewManager.py" line="2005"/>
         <source>Extend selection to end of document</source>
         <translation>Распространить выделение до конца документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1991"/>
+        <location filename="../ViewManager/ViewManager.py" line="2013"/>
         <source>Ctrl+Shift+Down</source>
         <translation>Ctrl+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2009"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Meta+H</source>
         <translation>Meta+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2018"/>
+        <location filename="../ViewManager/ViewManager.py" line="2040"/>
         <source>Delete previous character if not at start of line</source>
         <translation>Удалить предыдущий символ если он не первый в строке</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2039"/>
+        <location filename="../ViewManager/ViewManager.py" line="2061"/>
         <source>Meta+D</source>
         <translation>Meta+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2083"/>
+        <location filename="../ViewManager/ViewManager.py" line="2105"/>
         <source>Meta+K</source>
         <translation>Meta+K</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2192"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <source>Move to end of display line</source>
         <translation>Перейти на конец строки экрана</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2209"/>
+        <location filename="../ViewManager/ViewManager.py" line="2231"/>
         <source>Extend selection to end of display line</source>
         <translation>Распространить выделение до конца строки экрана</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2251"/>
+        <location filename="../ViewManager/ViewManager.py" line="2273"/>
         <source>Meta+Alt+Shift+N</source>
         <translation>Meta+Alt+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2266"/>
+        <location filename="../ViewManager/ViewManager.py" line="2288"/>
         <source>Meta+Alt+Shift+P</source>
         <translation>Meta+Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2284"/>
+        <location filename="../ViewManager/ViewManager.py" line="2306"/>
         <source>Meta+Alt+Shift+B</source>
         <translation>Meta+Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2302"/>
+        <location filename="../ViewManager/ViewManager.py" line="2324"/>
         <source>Meta+Alt+Shift+F</source>
         <translation>Meta+Alt+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2308"/>
+        <location filename="../ViewManager/ViewManager.py" line="2330"/>
         <source>Extend rectangular selection to first visible character in document line</source>
         <translation>Распространить прямоугольное выделение до первого видимого символа в строке документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2327"/>
+        <location filename="../ViewManager/ViewManager.py" line="2349"/>
         <source>Extend rectangular selection to end of document line</source>
         <translation>Распространить прямоугольное выделение до конца строки документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2337"/>
+        <location filename="../ViewManager/ViewManager.py" line="2359"/>
         <source>Meta+Alt+Shift+E</source>
         <translation>Meta+Alt+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2340"/>
+        <location filename="../ViewManager/ViewManager.py" line="2362"/>
         <source>Alt+Shift+End</source>
         <translation>Alt+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2361"/>
+        <location filename="../ViewManager/ViewManager.py" line="2383"/>
         <source>Alt+Shift+PgDown</source>
         <translation>Alt+Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2373"/>
+        <location filename="../ViewManager/ViewManager.py" line="2395"/>
         <source>Meta+Alt+Shift+V</source>
         <translation>Meta+Alt+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2393"/>
+        <location filename="../ViewManager/ViewManager.py" line="2415"/>
         <source>Scroll to start of document</source>
         <translation>Прокрутить на начало документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2408"/>
+        <location filename="../ViewManager/ViewManager.py" line="2430"/>
         <source>Scroll to end of document</source>
         <translation>Прокрутить на конец документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2423"/>
+        <location filename="../ViewManager/ViewManager.py" line="2445"/>
         <source>Scroll vertically to center current line</source>
         <translation>Прокрутить вертикально до центра текущей строки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2431"/>
-        <source>Meta+L</source>
-        <translation>Meta+L</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2438"/>
-        <source>Move to end of next word</source>
-        <translation>Перейти в конец следующего слова</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2453"/>
+        <source>Meta+L</source>
+        <translation>Meta+L</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2460"/>
+        <source>Move to end of next word</source>
+        <translation>Перейти в конец следующего слова</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2475"/>
         <source>Extend selection to end of next word</source>
         <translation>Распространить выделение до конца следующего слова</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2469"/>
+        <location filename="../ViewManager/ViewManager.py" line="2491"/>
         <source>Move to end of previous word</source>
         <translation>Перейти в конец предыдущего слова</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2481"/>
+        <location filename="../ViewManager/ViewManager.py" line="2503"/>
         <source>Extend selection to end of previous word</source>
         <translation>Распространить выделение до конца предыдущего слова</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2493"/>
+        <location filename="../ViewManager/ViewManager.py" line="2515"/>
         <source>Move to start of document line</source>
         <translation>Перейти на начало строки документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2501"/>
+        <location filename="../ViewManager/ViewManager.py" line="2523"/>
         <source>Meta+A</source>
         <translation>Meta+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2508"/>
+        <location filename="../ViewManager/ViewManager.py" line="2530"/>
         <source>Extend selection to start of document line</source>
         <translation>Распространить выделение до начала строки документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2519"/>
+        <location filename="../ViewManager/ViewManager.py" line="2541"/>
         <source>Meta+Shift+A</source>
         <translation>Meta+Shift+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2526"/>
+        <location filename="../ViewManager/ViewManager.py" line="2548"/>
         <source>Extend rectangular selection to start of document line</source>
         <translation>Распространить прямоугольное выделение до начала строки документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2536"/>
+        <location filename="../ViewManager/ViewManager.py" line="2558"/>
         <source>Meta+Alt+Shift+A</source>
         <translation>Meta+Alt+Shift+A</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2544"/>
+        <location filename="../ViewManager/ViewManager.py" line="2566"/>
         <source>Extend selection to start of display line</source>
         <translation>Распространить выделение до начала строки экрана</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2563"/>
+        <location filename="../ViewManager/ViewManager.py" line="2585"/>
         <source>Move to start of display or document line</source>
         <translation>Перейти на начало строки экрана или документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2577"/>
+        <location filename="../ViewManager/ViewManager.py" line="2599"/>
         <source>Extend selection to start of display or document line</source>
         <translation>Распространить выделение до начала строки экрана или документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2592"/>
+        <location filename="../ViewManager/ViewManager.py" line="2614"/>
         <source>Move to first visible character in display or document line</source>
         <translation>Перейти к первому видимому символу строки экрана или документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2609"/>
+        <location filename="../ViewManager/ViewManager.py" line="2631"/>
         <source>Extend selection to first visible character in display or document line</source>
         <translation>Распространить выделение до первого видимого символа строки экрана или документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2626"/>
+        <location filename="../ViewManager/ViewManager.py" line="2648"/>
         <source>Move to end of display or document line</source>
         <translation>Перейти в конец строки экрана или документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2640"/>
+        <location filename="../ViewManager/ViewManager.py" line="2662"/>
         <source>Extend selection to end of display or document line</source>
         <translation>Распространить выделение до конца строки экрана или документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2655"/>
+        <location filename="../ViewManager/ViewManager.py" line="2677"/>
         <source>Stuttered move up one page</source>
         <translation>Перейти на одну страницу вверх</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2667"/>
+        <location filename="../ViewManager/ViewManager.py" line="2689"/>
         <source>Stuttered extend selection up one page</source>
         <translation>Распространить выделение на страницу вверх</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2680"/>
+        <location filename="../ViewManager/ViewManager.py" line="2702"/>
         <source>Stuttered move down one page</source>
         <translation>Перейти на одну страницу вниз</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2692"/>
+        <location filename="../ViewManager/ViewManager.py" line="2714"/>
         <source>Stuttered extend selection down one page</source>
         <translation>Распространить выделение на страницу вниз</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2705"/>
+        <location filename="../ViewManager/ViewManager.py" line="2727"/>
         <source>Delete right to end of next word</source>
         <translation>Удалить до конца следующего слова справа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2713"/>
+        <location filename="../ViewManager/ViewManager.py" line="2735"/>
         <source>Alt+Del</source>
         <translation>Alt+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2720"/>
+        <location filename="../ViewManager/ViewManager.py" line="2742"/>
         <source>Move selected lines up one line</source>
         <translation>Переместить выделенные строки на одну строку вверх</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2732"/>
+        <location filename="../ViewManager/ViewManager.py" line="2754"/>
         <source>Move selected lines down one line</source>
         <translation>Переместить выделенные строки на одну строку вниз</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2346"/>
+        <location filename="../ViewManager/ViewManager.py" line="2368"/>
         <source>Alt+Shift+PgUp</source>
         <translation>Alt+Shift+PgUp</translation>
     </message>
@@ -80980,39 +80975,39 @@
         <translation>&lt;b&gt;Переключить комментарий&lt;/b&gt;&lt;p&gt;Переключить комментарий текущей строки, выборки или блока комментария. &lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Zoom reset</source>
         <translation>Сбросить масштаб</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Zoom &amp;reset</source>
         <translation>&amp;Сбросить масштаб</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3533"/>
+        <location filename="../ViewManager/ViewManager.py" line="3557"/>
         <source>Reset the zoom of the text</source>
         <translation>Сбросить масштаб текста</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3535"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Сбросить масштаб&lt;/b&gt;&lt;p&gt;Сброс масштаба текста. Эта настройка возвращает масштаб текста к 100%.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation>Увеличить масштаб</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation>Уменьшить масштаб</translation>
@@ -81023,191 +81018,191 @@
         <translation>Сохранить &amp;всё</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <location filename="../ViewManager/ViewManager.py" line="4270"/>
         <source>Next Change</source>
         <translation>Следующее изменение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4240"/>
-        <source>&amp;Next Change</source>
-        <translation>&amp;Следующее изменение</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4248"/>
-        <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Следующее изменение&lt;/b&gt;&lt;p&gt;Переход к следующей строке текущего редактора, на которой есть маркер об изменении.&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <source>&amp;Next Change</source>
+        <translation>&amp;Следующее изменение</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4272"/>
+        <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Следующее изменение&lt;/b&gt;&lt;p&gt;Переход к следующей строке текущего редактора, на которой есть маркер об изменении.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4288"/>
         <source>Previous Change</source>
         <translation>Предыдущее изменение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4257"/>
+        <location filename="../ViewManager/ViewManager.py" line="4281"/>
         <source>&amp;Previous Change</source>
         <translation>&amp;Предыдущее изменение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4266"/>
+        <location filename="../ViewManager/ViewManager.py" line="4290"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Предыдущее изменение&lt;/b&gt;&lt;p&gt;Переход к предыдущей строке текущего редактора, на которой есть маркер об изменении.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Check spelling</source>
         <translation>Проверка орфографии</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Check &amp;spelling...</source>
         <translation>Проверка &amp;орфографии...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4399"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Проверка орфографии&lt;/b&gt;&lt;p&gt;Проверка орфографии в текущем редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4424"/>
+        <location filename="../ViewManager/ViewManager.py" line="4448"/>
         <source>Edit Dictionary</source>
         <translation>Редактировать словарь</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4426"/>
+        <location filename="../ViewManager/ViewManager.py" line="4450"/>
         <source>Project Word List</source>
         <translation>Словарь проекта</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4429"/>
+        <location filename="../ViewManager/ViewManager.py" line="4453"/>
         <source>Project Exception List</source>
         <translation>Список исключений проекта</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4434"/>
+        <location filename="../ViewManager/ViewManager.py" line="4458"/>
         <source>User Word List</source>
         <translation>Словарь пользователя</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4437"/>
+        <location filename="../ViewManager/ViewManager.py" line="4461"/>
         <source>User Exception List</source>
         <translation>Список исключений пользователя</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6630"/>
+        <location filename="../ViewManager/ViewManager.py" line="6654"/>
         <source>Edit Spelling Dictionary</source>
         <translation>Редактировать орфографический словарь</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6607"/>
+        <location filename="../ViewManager/ViewManager.py" line="6631"/>
         <source>Editing {0}</source>
         <translation>Редактирование {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6589"/>
+        <location filename="../ViewManager/ViewManager.py" line="6613"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно прочитать файл словаря&lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6618"/>
+        <location filename="../ViewManager/ViewManager.py" line="6642"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation>&lt;p&gt;Невозможно записать файл словаря&lt;b&gt;{0}&lt;/b&gt;&lt;/p&gt;&lt;p&gt;Причина: {1}&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6630"/>
+        <location filename="../ViewManager/ViewManager.py" line="6654"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation>Файл словаря успешно сохранён.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2955"/>
+        <location filename="../ViewManager/ViewManager.py" line="2979"/>
         <source>Search current word forward</source>
         <translation>Поиск следующего слова</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2955"/>
+        <location filename="../ViewManager/ViewManager.py" line="2979"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation>Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2966"/>
+        <location filename="../ViewManager/ViewManager.py" line="2990"/>
         <source>Search next occurrence of the current word</source>
         <translation>Поиск следующего вхождения текущего слова впереди</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2969"/>
+        <location filename="../ViewManager/ViewManager.py" line="2993"/>
         <source>&lt;b&gt;Search current word forward&lt;/b&gt;&lt;p&gt;Search the next occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Поиск текущего слова вперёди&lt;/b&gt;&lt;p&gt;Поиск следующего вхождения текущего слова далее в текущем редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2978"/>
+        <location filename="../ViewManager/ViewManager.py" line="3002"/>
         <source>Search current word backward</source>
         <translation>Поиск предыдущего слова</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2978"/>
+        <location filename="../ViewManager/ViewManager.py" line="3002"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation>Ctrl+,</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2989"/>
+        <location filename="../ViewManager/ViewManager.py" line="3013"/>
         <source>Search previous occurrence of the current word</source>
         <translation>Поиск предыдущего вхождения текущего слова сзади</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2992"/>
+        <location filename="../ViewManager/ViewManager.py" line="3016"/>
         <source>&lt;b&gt;Search current word backward&lt;/b&gt;&lt;p&gt;Search the previous occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Поиск текущего слова сзади&lt;/b&gt;&lt;p&gt;Поиск предыдущего вхождения текущего слова сзади в текущем редакторе.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Search in Open Files</source>
         <translation>Поиск в открытых файлах</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Search in Open Files...</source>
         <translation>Найти в открытых файлах...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Meta+Ctrl+Alt+F</source>
         <comment>Search|Search Open Files</comment>
         <translation>Meta+Ctrl+Alt+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3310"/>
+        <location filename="../ViewManager/ViewManager.py" line="3334"/>
         <source>Search for a text in open files</source>
         <translation>Поиск текста в открытых файлах</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3312"/>
+        <location filename="../ViewManager/ViewManager.py" line="3336"/>
         <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Поиск в открытых файлах&lt;/b&gt;&lt;p&gt;Поиск заданного текста только в открытых файлах. Окно диалога позволит ввести текст для поиска, опции для поиска, а так же покажет результат&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
         <source>Replace in Open Files</source>
         <translation>Замена в открытых файлах</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
         <source>Meta+Ctrl+Alt+R</source>
         <comment>Search|Replace in Open Files</comment>
         <translation>Meta+Ctrl+Alt+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3332"/>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
         <source>Search for a text in open files and replace it</source>
         <translation>Поиск текста в открытых файлах и его замена</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3334"/>
+        <location filename="../ViewManager/ViewManager.py" line="3358"/>
         <source>&lt;b&gt;Replace in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Заменить в открытых файлах&lt;/b&gt;&lt;p&gt;Искать текст только в открытых файлах и заменить его.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
         <source>Replace in Open Files...</source>
         <translation>Заменить в открытых файлах...</translation>
     </message>
@@ -81233,67 +81228,67 @@
         <translation>&lt;b&gt;Сортировка&lt;/b&gt;&lt;p&gt;Сортировать строки в прямоугольной выборке, принимая во внимание только выделенную часть и игнорируя символы пропуска.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4953"/>
+        <location filename="../ViewManager/ViewManager.py" line="4977"/>
         <source>Language: {0}</source>
         <translation>Язык: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4960"/>
+        <location filename="../ViewManager/ViewManager.py" line="4984"/>
         <source>EOL Mode: {0}</source>
         <translation>Режим конца строк: {0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3641"/>
+        <location filename="../ViewManager/ViewManager.py" line="3665"/>
         <source>New Document View</source>
         <translation>Новое окно для документа</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3641"/>
-        <source>New &amp;Document View</source>
-        <translation>Новое окно для &amp;документа</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3646"/>
-        <source>Open a new view of the current document</source>
-        <translation>Открыть новое окно для текущего документа</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3648"/>
-        <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Новое окно для документа&lt;/b&gt;&lt;p&gt;Открытие нового окна для текущего документа. Оба окна будут показывать один и тот же документ. Текущие позиции могут быть разными.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3658"/>
-        <source>New Document View (with new split)</source>
-        <translation>Новое окно для документа (в новом разделе)</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3665"/>
+        <source>New &amp;Document View</source>
+        <translation>Новое окно для &amp;документа</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3670"/>
+        <source>Open a new view of the current document</source>
+        <translation>Открыть новое окно для текущего документа</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3672"/>
+        <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Новое окно для документа&lt;/b&gt;&lt;p&gt;Открытие нового окна для текущего документа. Оба окна будут показывать один и тот же документ. Текущие позиции могут быть разными.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3682"/>
+        <source>New Document View (with new split)</source>
+        <translation>Новое окно для документа (в новом разделе)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3689"/>
         <source>Open a new view of the current document in a new split</source>
         <translation>Открыть новое окно для текущего документа в новом разделе</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3668"/>
+        <location filename="../ViewManager/ViewManager.py" line="3692"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Новое окно для документа&lt;/b&gt;&lt;p&gt;Открытие нового окна для текущего документа в новом разделе. Оба окна будут показывать один и тот же документ. Текущие позиции могут быть разными.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4124"/>
+        <location filename="../ViewManager/ViewManager.py" line="4148"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Следующее предупреждение&lt;/b&gt;&lt;p&gt;Переход к следующей строке текущего редактора, имеющей предупреждение pyflakes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4143"/>
+        <location filename="../ViewManager/ViewManager.py" line="4167"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Предыдущее предупреждение&lt;/b&gt;&lt;p&gt;Переход к предыдущей строке текущего редактора, имеющей предупреждение pyflakes.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4161"/>
+        <location filename="../ViewManager/ViewManager.py" line="4185"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Очистить предупреждения&lt;/b&gt;&lt;p&gt;Очистить предупреждения от pyflakes во всех окнах редактора.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2776"/>
+        <location filename="../ViewManager/ViewManager.py" line="2798"/>
         <source>Complete</source>
         <translation>Дополнить</translation>
     </message>
@@ -81414,65 +81409,65 @@
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3020"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Replace and Search</source>
         <translation>Заменить и найти</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3020"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Meta+R</source>
         <comment>Search|Replace and Search</comment>
         <translation>Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3030"/>
+        <location filename="../ViewManager/ViewManager.py" line="3054"/>
         <source>Replace the found text and search the next occurrence</source>
         <translation>Заменить найденный текст и найти следующее вхождение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3033"/>
+        <location filename="../ViewManager/ViewManager.py" line="3057"/>
         <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Заменить и найти&lt;/b&gt;&lt;p&gt;Заменить найденное вхождение текста текущего редактирования и выполнить поиск следующего. Ранее введенный текст и параметры поиска используются повторно.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3044"/>
+        <location filename="../ViewManager/ViewManager.py" line="3068"/>
         <source>Replace Occurrence</source>
         <translation>Заменить вхождение</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3044"/>
+        <location filename="../ViewManager/ViewManager.py" line="3068"/>
         <source>Ctrl+Meta+R</source>
         <comment>Search|Replace Occurrence</comment>
         <translation>Ctrl+Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3054"/>
+        <location filename="../ViewManager/ViewManager.py" line="3078"/>
         <source>Replace the found text</source>
         <translation>Заменить найденный текст</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3056"/>
+        <location filename="../ViewManager/ViewManager.py" line="3080"/>
         <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Заменить вхождение&lt;/b&gt;&lt;p&gt;Заменить найденнойе вхождение искомого текста текущего редактирования.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3066"/>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
         <source>Replace All</source>
         <translation>Заменить все</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3066"/>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
         <source>Shift+Meta+R</source>
         <comment>Search|Replace All</comment>
         <translation>Shift+Meta+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3076"/>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
         <source>Replace search text occurrences</source>
         <translation>Заменить вхождения искомого текста</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3078"/>
+        <location filename="../ViewManager/ViewManager.py" line="3102"/>
         <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Заменить все&lt;/b&gt;&lt;p&gt;Заменить все вхождения искомого текста текущего редактирования.&lt;/p&gt;</translation>
     </message>
@@ -81498,57 +81493,57 @@
         <translation>&lt;b&gt;Информация для кода&lt;/b&gt;&lt;p&gt;Показ информации для кода на позиции курсора.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <location filename="../ViewManager/ViewManager.py" line="3638"/>
         <source>Clear all folds</source>
         <translation>Очистить все свертки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3610"/>
+        <location filename="../ViewManager/ViewManager.py" line="3634"/>
         <source>Clear &amp;all folds</source>
         <translation>Очистить &amp;все свертки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3616"/>
+        <location filename="../ViewManager/ViewManager.py" line="3640"/>
         <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Очистить все свертки&lt;/b&gt;&lt;p&gt;Очистить все свертки текущего редактора, т. е. убедиться, что все строки отображаются развернутыми.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Reverse selected lines</source>
         <translation>Реверсировать выбранные строки</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Meta+Alt+R</source>
         <translation>Meta+Alt+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3774"/>
-        <source>Python AST Viewer</source>
-        <translation>Просмотрщик Python AST</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3779"/>
-        <source>Show the AST for the current Python file</source>
-        <translation>AST-представление текущего файла Python</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3781"/>
-        <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Просмотрщик Python AST&lt;/b&gt;&lt;p&gt;Получение синтаксического древовидного представления (AST) для текущего файла с кодом Python.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3791"/>
-        <source>Python Disassembly Viewer</source>
-        <translation>Просмотрщик Python Disassembly</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Python AST Viewer</source>
+        <translation>Просмотрщик Python AST</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3803"/>
+        <source>Show the AST for the current Python file</source>
+        <translation>AST-представление текущего файла Python</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3805"/>
+        <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Просмотрщик Python AST&lt;/b&gt;&lt;p&gt;Получение синтаксического древовидного представления (AST) для текущего файла с кодом Python.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3815"/>
+        <source>Python Disassembly Viewer</source>
+        <translation>Просмотрщик Python Disassembly</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
         <source>Show the Disassembly for the current Python file</source>
         <translation>Показ дизассемблирования текущего файла Python</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3800"/>
+        <location filename="../ViewManager/ViewManager.py" line="3824"/>
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Просмотрщик Python Disassembly&lt;/b&gt;&lt;p&gt;Получение синтаксического древовидного представления дизассемблирования текущего файла с кодом Python.&lt;/p&gt;</translation>
     </message>
@@ -81567,6 +81562,27 @@
         <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Поиск предыдущего&lt;/b&gt;&lt;p&gt;Поиск предыдущего вхождения текста в окне оболочки. Используются ранее введенный искомый текст и параметры поиска.&lt;/p&gt;</translation>
     </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1468"/>
+        <source>Generate Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1468"/>
+        <source>Ctrl+Alt+D</source>
+        <comment>Edit|Generate Docstring</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1475"/>
+        <source>Generate a docstring for the current function/method</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1478"/>
+        <source>&lt;b&gt;Generate Docstring&lt;/b&gt;&lt;p&gt;Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
--- a/eric6/i18n/eric6_tr.ts	Fri Jan 22 16:55:43 2021 +0100
+++ b/eric6/i18n/eric6_tr.ts	Sat Jan 23 12:02:52 2021 +0100
@@ -11470,17 +11470,17 @@
         <translation>Kutu Yorumlayıcı</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="828"/>
+        <location filename="../QScintilla/Editor.py" line="832"/>
         <source>Select to brace</source>
         <translation>Köşeli ayracı seç</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="830"/>
+        <location filename="../QScintilla/Editor.py" line="834"/>
         <source>Select all</source>
         <translation>Hepsini seç</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="831"/>
+        <location filename="../QScintilla/Editor.py" line="835"/>
         <source>Deselect all</source>
         <translation>Tüm seçimi iptal et</translation>
     </message>
@@ -11490,12 +11490,12 @@
         <translation>Yazım Kontrolü...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="839"/>
+        <location filename="../QScintilla/Editor.py" line="843"/>
         <source>Check spelling of selection...</source>
         <translation>Seçilen alanın yazım kontrolü...</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="843"/>
+        <location filename="../QScintilla/Editor.py" line="847"/>
         <source>Remove from dictionary</source>
         <translation>Sözlükten çıkar</translation>
     </message>
@@ -12325,12 +12325,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="849"/>
-        <source>Insert Docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8715"/>
+        <location filename="../QScintilla/Editor.py" line="8726"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
@@ -82488,7 +82483,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2776"/>
+        <location filename="../ViewManager/ViewManager.py" line="2798"/>
         <source>Complete</source>
         <translation type="unfinished"></translation>
     </message>
@@ -82554,1549 +82549,1549 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Move left one character</source>
         <translation>Bir karakter sola taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Left</source>
         <translation>Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1494"/>
+        <location filename="../ViewManager/ViewManager.py" line="1516"/>
         <source>Move right one character</source>
         <translation>Bir karakter sağa taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1494"/>
+        <location filename="../ViewManager/ViewManager.py" line="1516"/>
         <source>Right</source>
         <translation>Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1508"/>
+        <location filename="../ViewManager/ViewManager.py" line="1530"/>
         <source>Move up one line</source>
         <translation>Bir satır üste taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1508"/>
+        <location filename="../ViewManager/ViewManager.py" line="1530"/>
         <source>Up</source>
         <translation>Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1520"/>
+        <location filename="../ViewManager/ViewManager.py" line="1542"/>
         <source>Move down one line</source>
         <translation>Bir satır aşağı taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1520"/>
+        <location filename="../ViewManager/ViewManager.py" line="1542"/>
         <source>Down</source>
         <translation>Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1532"/>
+        <location filename="../ViewManager/ViewManager.py" line="1554"/>
         <source>Move left one word part</source>
         <translation>Bir kelime parçası sola taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1566"/>
+        <location filename="../ViewManager/ViewManager.py" line="1588"/>
         <source>Alt+Left</source>
         <translation>Alt+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1546"/>
+        <location filename="../ViewManager/ViewManager.py" line="1568"/>
         <source>Move right one word part</source>
         <translation>bir kelime parçası sağa taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2446"/>
+        <location filename="../ViewManager/ViewManager.py" line="2468"/>
         <source>Alt+Right</source>
         <translation>Alt+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1560"/>
+        <location filename="../ViewManager/ViewManager.py" line="1582"/>
         <source>Move left one word</source>
         <translation>Bir kelime sola taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1611"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Ctrl+Left</source>
         <translation>Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1575"/>
+        <location filename="../ViewManager/ViewManager.py" line="1597"/>
         <source>Move right one word</source>
         <translation>Bir kelime sağa taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2200"/>
+        <location filename="../ViewManager/ViewManager.py" line="2222"/>
         <source>Ctrl+Right</source>
         <translation>Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2401"/>
+        <location filename="../ViewManager/ViewManager.py" line="2423"/>
         <source>Home</source>
         <translation>Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1614"/>
+        <location filename="../ViewManager/ViewManager.py" line="1636"/>
         <source>Alt+Home</source>
         <translation>Alt+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2416"/>
+        <location filename="../ViewManager/ViewManager.py" line="2438"/>
         <source>End</source>
         <translation>End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1637"/>
+        <location filename="../ViewManager/ViewManager.py" line="1659"/>
         <source>Scroll view down one line</source>
         <translation>Görüntüyü bir satır aşağı kaydır</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1749"/>
         <source>Ctrl+Down</source>
         <translation>Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1649"/>
+        <location filename="../ViewManager/ViewManager.py" line="1671"/>
         <source>Scroll view up one line</source>
         <translation>Görüntüyü bir satır yukarı kaydır</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1710"/>
+        <location filename="../ViewManager/ViewManager.py" line="1732"/>
         <source>Ctrl+Up</source>
         <translation>Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1660"/>
+        <location filename="../ViewManager/ViewManager.py" line="1682"/>
         <source>Move up one paragraph</source>
         <translation>Bir paragraf yukarı taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1660"/>
+        <location filename="../ViewManager/ViewManager.py" line="1682"/>
         <source>Alt+Up</source>
         <translation>Alt+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1669"/>
+        <location filename="../ViewManager/ViewManager.py" line="1691"/>
         <source>Move down one paragraph</source>
         <translation>Bir paragraf aşağı taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1669"/>
+        <location filename="../ViewManager/ViewManager.py" line="1691"/>
         <source>Alt+Down</source>
         <translation>Alt+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1681"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>Move up one page</source>
         <translation>Bir sayfa yukarı taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1681"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>PgUp</source>
         <translation>PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1690"/>
+        <location filename="../ViewManager/ViewManager.py" line="1712"/>
         <source>Move down one page</source>
         <translation>Bir sayfa aşağı taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1690"/>
+        <location filename="../ViewManager/ViewManager.py" line="1712"/>
         <source>PgDown</source>
         <translation>PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1713"/>
+        <location filename="../ViewManager/ViewManager.py" line="1735"/>
         <source>Ctrl+Home</source>
         <translation>Ctrl+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1730"/>
+        <location filename="../ViewManager/ViewManager.py" line="1752"/>
         <source>Ctrl+End</source>
         <translation>Ctrl+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Indent one level</source>
         <translation>Bir seviye içeri girinti</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Tab</source>
         <translation>Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1745"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Unindent one level</source>
         <translation>Girintisiz birinci seviye</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1745"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Shift+Tab</source>
         <translation>Shift+Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1755"/>
+        <location filename="../ViewManager/ViewManager.py" line="1777"/>
         <source>Extend selection left one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1755"/>
+        <location filename="../ViewManager/ViewManager.py" line="1777"/>
         <source>Shift+Left</source>
         <translation>Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1770"/>
+        <location filename="../ViewManager/ViewManager.py" line="1792"/>
         <source>Extend selection right one character</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1770"/>
+        <location filename="../ViewManager/ViewManager.py" line="1792"/>
         <source>Shift+Right</source>
         <translation>Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1785"/>
+        <location filename="../ViewManager/ViewManager.py" line="1807"/>
         <source>Extend selection up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1785"/>
+        <location filename="../ViewManager/ViewManager.py" line="1807"/>
         <source>Shift+Up</source>
         <translation>Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1800"/>
+        <location filename="../ViewManager/ViewManager.py" line="1822"/>
         <source>Extend selection down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1800"/>
+        <location filename="../ViewManager/ViewManager.py" line="1822"/>
         <source>Shift+Down</source>
         <translation>Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1815"/>
+        <location filename="../ViewManager/ViewManager.py" line="1837"/>
         <source>Extend selection left one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="1873"/>
+        <source>Alt+Shift+Left</source>
+        <translation>Alt+Shift+Left</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="1851"/>
-        <source>Alt+Shift+Left</source>
-        <translation>Alt+Shift+Left</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1829"/>
         <source>Extend selection right one word part</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2461"/>
+        <location filename="../ViewManager/ViewManager.py" line="2483"/>
         <source>Alt+Shift+Right</source>
         <translation>Alt+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1843"/>
+        <location filename="../ViewManager/ViewManager.py" line="1865"/>
         <source>Extend selection left one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2555"/>
+        <location filename="../ViewManager/ViewManager.py" line="2577"/>
         <source>Ctrl+Shift+Left</source>
         <translation>Ctrl+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1860"/>
+        <location filename="../ViewManager/ViewManager.py" line="1882"/>
         <source>Extend selection right one word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2217"/>
+        <location filename="../ViewManager/ViewManager.py" line="2239"/>
         <source>Ctrl+Shift+Right</source>
         <translation>Ctrl+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1889"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Shift+Home</source>
         <translation>Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2321"/>
+        <location filename="../ViewManager/ViewManager.py" line="2343"/>
         <source>Alt+Shift+Home</source>
         <translation>Alt+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1906"/>
+        <location filename="../ViewManager/ViewManager.py" line="1928"/>
         <source>Shift+End</source>
         <translation>Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1912"/>
+        <location filename="../ViewManager/ViewManager.py" line="1934"/>
         <source>Extend selection up one paragraph</source>
         <translation>Seçimi bir paragraf yukarı genişlet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1912"/>
+        <location filename="../ViewManager/ViewManager.py" line="1934"/>
         <source>Alt+Shift+Up</source>
         <translation>Alt+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1925"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Extend selection down one paragraph</source>
         <translation>Seçimi bir paragraf aşağı genişlet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1925"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Alt+Shift+Down</source>
         <translation>Alt+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Extend selection up one page</source>
         <translation>Seçimi bir sayfa yukarı genişlet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Shift+PgUp</source>
         <translation>Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1950"/>
+        <location filename="../ViewManager/ViewManager.py" line="1972"/>
         <source>Extend selection down one page</source>
         <translation>Seçimi bir sayfa aşağı genişlet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1950"/>
+        <location filename="../ViewManager/ViewManager.py" line="1972"/>
         <source>Shift+PgDown</source>
         <translation>Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1977"/>
+        <location filename="../ViewManager/ViewManager.py" line="1999"/>
         <source>Ctrl+Shift+Home</source>
         <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2016"/>
         <source>Ctrl+Shift+End</source>
         <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2000"/>
+        <location filename="../ViewManager/ViewManager.py" line="2022"/>
         <source>Delete previous character</source>
         <translation>Önceki karakteri sil</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2000"/>
+        <location filename="../ViewManager/ViewManager.py" line="2022"/>
         <source>Backspace</source>
         <translation>Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2012"/>
+        <location filename="../ViewManager/ViewManager.py" line="2034"/>
         <source>Shift+Backspace</source>
         <translation>Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2031"/>
+        <location filename="../ViewManager/ViewManager.py" line="2053"/>
         <source>Delete current character</source>
         <translation>Gçerli karakteri siler</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2031"/>
+        <location filename="../ViewManager/ViewManager.py" line="2053"/>
         <source>Del</source>
         <translation>Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2045"/>
+        <location filename="../ViewManager/ViewManager.py" line="2067"/>
         <source>Delete word to left</source>
         <translation>Kelimeyi sola doğru sil</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2045"/>
+        <location filename="../ViewManager/ViewManager.py" line="2067"/>
         <source>Ctrl+Backspace</source>
         <translation>Ctrl+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2056"/>
+        <location filename="../ViewManager/ViewManager.py" line="2078"/>
         <source>Delete word to right</source>
         <translation>Kelimeyi sağa doğru sil</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2056"/>
+        <location filename="../ViewManager/ViewManager.py" line="2078"/>
         <source>Ctrl+Del</source>
         <translation>Ctrl+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2066"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Delete line to left</source>
         <translation>Satırı solbaşa kadar sil</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2066"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation>Ctrl+Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2077"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Delete line to right</source>
         <translation>Satırı sağbaşa kadar sil</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2086"/>
+        <location filename="../ViewManager/ViewManager.py" line="2108"/>
         <source>Ctrl+Shift+Del</source>
         <translation>Ctrl+Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Insert new line</source>
         <translation>Araya yeni satır sok</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Return</source>
         <translation>Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Enter</source>
         <translation>Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Insert new line below current line</source>
         <translation>Geçerli satırın altına yeni satır ekle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Shift+Return</source>
         <translation>Shift+Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Shift+Enter</source>
         <translation>Shift+Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2115"/>
-        <source>Delete current line</source>
-        <translation>Geçerli satırı sil</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2115"/>
-        <source>Ctrl+Shift+L</source>
-        <translation>Ctrl+Shift+L</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2126"/>
-        <source>Duplicate current line</source>
-        <translation>Geçerli satırı çiftle</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2126"/>
-        <source>Ctrl+D</source>
-        <translation>Ctrl+D</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2137"/>
-        <source>Swap current and previous lines</source>
-        <translation type="unfinished"></translation>
+        <source>Delete current line</source>
+        <translation>Geçerli satırı sil</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="2137"/>
+        <source>Ctrl+Shift+L</source>
+        <translation>Ctrl+Shift+L</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <source>Duplicate current line</source>
+        <translation>Geçerli satırı çiftle</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <source>Ctrl+D</source>
+        <translation>Ctrl+D</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2159"/>
+        <source>Swap current and previous lines</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2159"/>
         <source>Ctrl+T</source>
         <translation>Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2160"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Cut current line</source>
         <translation>Geçerli satırı kes</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2160"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Alt+Shift+L</source>
         <translation>Alt+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2170"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Copy current line</source>
         <translation>Geçerli satırı kopyala</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2170"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Ctrl+Shift+T</source>
         <translation>Ctrl+Shift+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
+        <location filename="../ViewManager/ViewManager.py" line="2203"/>
         <source>Toggle insert/overtype</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
-        <source>Ins</source>
-        <translation>Ins</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2745"/>
-        <source>Convert selection to lower case</source>
-        <translation>Seçimi küçük olürük değiştir</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2745"/>
-        <source>Alt+Shift+U</source>
-        <translation>Alt+Shift+U</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2757"/>
-        <source>Convert selection to upper case</source>
-        <translation>Seçimi büyük olarak değiştir</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2757"/>
-        <source>Ctrl+Shift+U</source>
-        <translation>Ctrl+Shift+U</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2203"/>
+        <source>Ins</source>
+        <translation>Ins</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2767"/>
+        <source>Convert selection to lower case</source>
+        <translation>Seçimi küçük olürük değiştir</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2767"/>
+        <source>Alt+Shift+U</source>
+        <translation>Alt+Shift+U</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2779"/>
+        <source>Convert selection to upper case</source>
+        <translation>Seçimi büyük olarak değiştir</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2779"/>
+        <source>Ctrl+Shift+U</source>
+        <translation>Ctrl+Shift+U</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2225"/>
         <source>Alt+End</source>
         <translation>Alt+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2223"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <source>Formfeed</source>
         <translation>Süreklibaskı kağıdı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2232"/>
+        <location filename="../ViewManager/ViewManager.py" line="2254"/>
         <source>Escape</source>
         <translation>Kaçış</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2232"/>
+        <location filename="../ViewManager/ViewManager.py" line="2254"/>
         <source>Esc</source>
         <translation>Esc</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2241"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Extend rectangular selection down one line</source>
         <translation>Köşeli seçimi bir sayfa aşağı genişlet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2241"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Alt+Ctrl+Down</source>
         <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2257"/>
+        <location filename="../ViewManager/ViewManager.py" line="2279"/>
         <source>Extend rectangular selection up one line</source>
         <translation>Köşeli seçimi bir satır yukarı genişlet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2257"/>
+        <location filename="../ViewManager/ViewManager.py" line="2279"/>
         <source>Alt+Ctrl+Up</source>
         <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2272"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Extend rectangular selection left one character</source>
         <translation>Köşeli seçimi bir karakter sola genişlet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2272"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Alt+Ctrl+Left</source>
         <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2290"/>
+        <location filename="../ViewManager/ViewManager.py" line="2312"/>
         <source>Extend rectangular selection right one character</source>
         <translation>Köşeli seçimi bir karakter sağa genişlet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2290"/>
+        <location filename="../ViewManager/ViewManager.py" line="2312"/>
         <source>Alt+Ctrl+Right</source>
         <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2346"/>
+        <location filename="../ViewManager/ViewManager.py" line="2368"/>
         <source>Extend rectangular selection up one page</source>
         <translation>Köşeli seçimi bir sayfa yukarı genişlet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2361"/>
+        <location filename="../ViewManager/ViewManager.py" line="2383"/>
         <source>Extend rectangular selection down one page</source>
         <translation>Köşeli seçimi bir sayfa aşağı genişlet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2379"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Duplicate current selection</source>
         <translation>Geçerli seçimi çoğalt</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2379"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Ctrl+Shift+D</source>
         <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3352"/>
+        <location filename="../ViewManager/ViewManager.py" line="3376"/>
         <source>&amp;Search</source>
         <translation>A&amp;ra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2786"/>
+        <location filename="../ViewManager/ViewManager.py" line="2808"/>
         <source>&amp;Edit</source>
         <translation>Düz&amp;en</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2843"/>
+        <location filename="../ViewManager/ViewManager.py" line="2867"/>
         <source>Edit</source>
         <translation>Düzen</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3447"/>
+        <location filename="../ViewManager/ViewManager.py" line="3471"/>
         <source>Search</source>
         <translation>Ara</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2875"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>&amp;Search...</source>
         <translation>A&amp;ra...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2875"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation>Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2883"/>
+        <location filename="../ViewManager/ViewManager.py" line="2907"/>
         <source>Search for a text</source>
         <translation>Metin olarak ara</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2885"/>
+        <location filename="../ViewManager/ViewManager.py" line="2909"/>
         <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Search next</source>
         <translation>Sonrakini ara</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Search &amp;next</source>
         <translation>So&amp;nrakini ara</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation>F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2904"/>
+        <location filename="../ViewManager/ViewManager.py" line="2928"/>
         <source>Search next occurrence of text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2906"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Search previous</source>
         <translation>Öncekini ara</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Search &amp;previous</source>
         <translation>Öncekini a&amp;ra</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation>Shift+F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2924"/>
+        <location filename="../ViewManager/ViewManager.py" line="2948"/>
         <source>Search previous occurrence of text</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2926"/>
+        <location filename="../ViewManager/ViewManager.py" line="2950"/>
         <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2936"/>
+        <location filename="../ViewManager/ViewManager.py" line="2960"/>
         <source>Clear search markers</source>
         <translation>Arama işaretlerini temizle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2936"/>
+        <location filename="../ViewManager/ViewManager.py" line="2960"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation>Ctrl+3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2944"/>
+        <location filename="../ViewManager/ViewManager.py" line="2968"/>
         <source>Clear all displayed search markers</source>
         <translation>Gösterilen tüm arama işaretlerin temizle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2946"/>
+        <location filename="../ViewManager/ViewManager.py" line="2970"/>
         <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>Replace</source>
         <translation>Yerdeğiştir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>&amp;Replace...</source>
         <translation>&amp;Yerdeğiştir...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation>Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3008"/>
+        <location filename="../ViewManager/ViewManager.py" line="3032"/>
         <source>Replace some text</source>
         <translation>Bazı metinleri değiştir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3010"/>
+        <location filename="../ViewManager/ViewManager.py" line="3034"/>
         <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3387"/>
+        <location filename="../ViewManager/ViewManager.py" line="3411"/>
         <source>Quicksearch</source>
         <translation>Hızlı arama</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3088"/>
+        <location filename="../ViewManager/ViewManager.py" line="3112"/>
         <source>&amp;Quicksearch</source>
         <translation>&amp;Hızlı arama</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3088"/>
+        <location filename="../ViewManager/ViewManager.py" line="3112"/>
         <source>Ctrl+Shift+K</source>
         <comment>Search|Quicksearch</comment>
         <translation>Ctrl+Shift+K</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3096"/>
+        <location filename="../ViewManager/ViewManager.py" line="3120"/>
         <source>Perform a quicksearch</source>
         <translation>Hızlı arama gerçekleştir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3098"/>
+        <location filename="../ViewManager/ViewManager.py" line="3122"/>
         <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <source>Quicksearch backwards</source>
         <translation>Geriye doğru hızlı arama</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <source>Quicksearch &amp;backwards</source>
         <translation>Geriye &amp;doğru hızlı arama</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <source>Ctrl+Shift+J</source>
         <comment>Search|Quicksearch backwards</comment>
         <translation>Ctrl+Shift+J</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3119"/>
+        <location filename="../ViewManager/ViewManager.py" line="3143"/>
         <source>Perform a quicksearch backwards</source>
         <translation>Geriye doğru hızlı arama gerçekleştir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3122"/>
+        <location filename="../ViewManager/ViewManager.py" line="3146"/>
         <source>&lt;b&gt;Quicksearch backwards&lt;/b&gt;&lt;p&gt;This searches the previous occurrence of the quicksearch text.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Quicksearch extend</source>
         <translation>Gelişmiş hızlıarama</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Quicksearch e&amp;xtend</source>
         <translation>Gelişmi&amp;ş hızlıarama</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Ctrl+Shift+H</source>
         <comment>Search|Quicksearch extend</comment>
         <translation>Ctrl+Shift+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3139"/>
+        <location filename="../ViewManager/ViewManager.py" line="3163"/>
         <source>Extend the quicksearch to the end of the current word</source>
         <translation>Hızlıaramayı geçerli kelimenin sonuna genişlet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3142"/>
+        <location filename="../ViewManager/ViewManager.py" line="3166"/>
         <source>&lt;b&gt;Quicksearch extend&lt;/b&gt;&lt;p&gt;This extends the quicksearch text to the end of the word currently found.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3160"/>
+        <location filename="../ViewManager/ViewManager.py" line="3184"/>
         <source>Goto Line</source>
         <translation>Satıra Git</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <location filename="../ViewManager/ViewManager.py" line="3176"/>
         <source>&amp;Goto Line...</source>
         <translation>Satıra &amp;Git...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <location filename="../ViewManager/ViewManager.py" line="3176"/>
         <source>Ctrl+G</source>
         <comment>Search|Goto Line</comment>
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3162"/>
+        <location filename="../ViewManager/ViewManager.py" line="3186"/>
         <source>&lt;b&gt;Goto Line&lt;/b&gt;&lt;p&gt;Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Satıra Git&lt;/b&gt;&lt;p&gt;Geçerli düzenleyicide metnin seçilen bir satırına gitr. Bir diyalog seçilebilecek satır numaralarını gösterir.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <location filename="../ViewManager/ViewManager.py" line="3203"/>
         <source>Goto Brace</source>
         <translation>Köşeli Ayraça Git</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <location filename="../ViewManager/ViewManager.py" line="3195"/>
         <source>Goto &amp;Brace</source>
         <translation>Köşeli &amp;Ayraça Git</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <location filename="../ViewManager/ViewManager.py" line="3195"/>
         <source>Ctrl+L</source>
         <comment>Search|Goto Brace</comment>
         <translation>Ctrl+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3181"/>
+        <location filename="../ViewManager/ViewManager.py" line="3205"/>
         <source>&lt;b&gt;Goto Brace&lt;/b&gt;&lt;p&gt;Go to the matching brace in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Search in Files</source>
         <translation>Dosyalarda Ara</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Search in &amp;Files...</source>
         <translation>Dosyalar&amp;da Ara...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation>Shift+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3267"/>
+        <location filename="../ViewManager/ViewManager.py" line="3291"/>
         <source>Search for a text in files</source>
         <translation>Metni dosyada ara</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3269"/>
+        <location filename="../ViewManager/ViewManager.py" line="3293"/>
         <source>&lt;b&gt;Search in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Replace in Files</source>
         <translation>Dosyalarda yer değiştir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Replace in F&amp;iles...</source>
         <translation>Dosya İ&amp;çinde Değiştir...</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation>Shift+Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3286"/>
+        <location filename="../ViewManager/ViewManager.py" line="3310"/>
         <source>Search for a text in files and replace it</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3288"/>
+        <location filename="../ViewManager/ViewManager.py" line="3312"/>
         <source>&lt;b&gt;Replace in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3406"/>
+        <location filename="../ViewManager/ViewManager.py" line="3430"/>
         <source>&lt;p&gt;Enter the searchtext directly into this field. The search will be performed case insensitive. The quicksearch function is activated upon activation of the quicksearch next action (default key Ctrl+Shift+K), if this entry field does not have the input focus. Otherwise it searches for the next occurrence of the text entered. The quicksearch backwards action (default key Ctrl+Shift+J) searches backward. Activating the &apos;quicksearch extend&apos; action (default key Ctrl+Shift+H) extends the current searchtext to the end of the currently found word. The quicksearch can be ended by pressing the Return key while the quicksearch entry has the the input focus.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3433"/>
+        <location filename="../ViewManager/ViewManager.py" line="3457"/>
         <source>Quicksearch Textedit</source>
         <translation>Metindüzenleyicide Hızlı Arama</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom in</source>
         <translation>Büyüt</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom &amp;in</source>
         <translation>Bü&amp;yült</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3496"/>
+        <location filename="../ViewManager/ViewManager.py" line="3520"/>
         <source>Zoom in on the text</source>
         <translation>MEtni Büyüt</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3498"/>
+        <location filename="../ViewManager/ViewManager.py" line="3522"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Büyüt&lt;/b&gt;&lt;p&gt;Metin içinde büyüt. Bu metni daha  büyük yapar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom out</source>
         <translation>Küçült</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom &amp;out</source>
         <translation>Küçü&amp;lt</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3515"/>
+        <location filename="../ViewManager/ViewManager.py" line="3539"/>
         <source>Zoom out on the text</source>
         <translation>Metin üzerinde küçült</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3517"/>
+        <location filename="../ViewManager/ViewManager.py" line="3541"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Küçült&lt;/b&gt;&lt;p&gt;Metin üzerinde küçült. Bu metni daha küçük yapar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>Zoom</source>
         <translation>Büyüt</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>&amp;Zoom</source>
         <translation>Büyü&amp;t</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation>Ctrl+#</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3552"/>
+        <location filename="../ViewManager/ViewManager.py" line="3576"/>
         <source>Zoom the text</source>
         <translation>Metni büyüt</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3554"/>
+        <location filename="../ViewManager/ViewManager.py" line="3578"/>
         <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3567"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Toggle all folds</source>
         <translation>Tüm Açkapaları Kapat</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <location filename="../ViewManager/ViewManager.py" line="3587"/>
         <source>&amp;Toggle all folds</source>
         <translation type="unfinished">Tüm açk&amp;apaları kapat</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3569"/>
+        <location filename="../ViewManager/ViewManager.py" line="3593"/>
         <source>&lt;b&gt;Toggle all folds&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Tüm Açkapalar&lt;/b&gt;&lt;p&gt;Geçerli düzenleyicideki tüm açkapaları diğer duruma alırr.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <location filename="../ViewManager/ViewManager.py" line="3607"/>
         <source>Toggle all folds (including children)</source>
         <translation>Tüm açkapalar (iç içe olanlar dahil)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3577"/>
-        <source>Toggle all &amp;folds (including children)</source>
-        <translation>Tüm a&amp;çkapalar (iç içe olanlar dahil)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3585"/>
-        <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Tüm açkapalar (içiçe olanlar dahil)&lt;/b&gt;&lt;p&gt;Tüm açkapaları iç içe olanlar da dahil diğer duruma al.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3599"/>
-        <source>Toggle current fold</source>
-        <translation>Geçerli açkapayı kapat</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3595"/>
-        <source>Toggle &amp;current fold</source>
-        <translation>Geçerli a&amp;çkapayı kapat</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3601"/>
+        <source>Toggle all &amp;folds (including children)</source>
+        <translation>Tüm a&amp;çkapalar (iç içe olanlar dahil)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3609"/>
+        <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Tüm açkapalar (içiçe olanlar dahil)&lt;/b&gt;&lt;p&gt;Tüm açkapaları iç içe olanlar da dahil diğer duruma al.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3623"/>
+        <source>Toggle current fold</source>
+        <translation>Geçerli açkapayı kapat</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3619"/>
+        <source>Toggle &amp;current fold</source>
+        <translation>Geçerli a&amp;çkapayı kapat</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3625"/>
         <source>&lt;b&gt;Toggle current fold&lt;/b&gt;&lt;p&gt;Toggle the folds of the current line of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3631"/>
+        <location filename="../ViewManager/ViewManager.py" line="3655"/>
         <source>Remove all highlights</source>
         <translation>Bütün parlatılmış alanları kaldır</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3633"/>
+        <location filename="../ViewManager/ViewManager.py" line="3657"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3703"/>
         <source>Split view</source>
         <translation>Bölünmüş görünüm</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3703"/>
         <source>&amp;Split view</source>
         <translation>Bölünmü&amp;ş görünüm</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3684"/>
+        <location filename="../ViewManager/ViewManager.py" line="3708"/>
         <source>Add a split to the view</source>
         <translation>Görünüme yeni bir ayrım ekle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3686"/>
+        <location filename="../ViewManager/ViewManager.py" line="3710"/>
         <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3694"/>
+        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>Arrange horizontally</source>
         <translation>Yatay düzenleme</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3694"/>
+        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>Arrange &amp;horizontally</source>
         <translation>Yatay &amp;düzenleme</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3698"/>
+        <location filename="../ViewManager/ViewManager.py" line="3722"/>
         <source>Arrange the splitted views horizontally</source>
         <translation>Bölünmüş görünümleri yatay olarak düzenle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3700"/>
-        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Yatay ayarlama&lt;/b&gt;&lt;p&gt;Bölünmüş görünümler yatay olarak düzenlenir.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3709"/>
-        <source>Remove split</source>
-        <translation>Bölümlemeyi kaldır</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3709"/>
-        <source>&amp;Remove split</source>
-        <translation>Bölümlemeyi kaldı&amp;r</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3714"/>
-        <source>Remove the current split</source>
-        <translation>Geçerli ayrımı kaldır</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3716"/>
-        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3724"/>
+        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Yatay ayarlama&lt;/b&gt;&lt;p&gt;Bölünmüş görünümler yatay olarak düzenlenir.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3733"/>
+        <source>Remove split</source>
+        <translation>Bölümlemeyi kaldır</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3733"/>
+        <source>&amp;Remove split</source>
+        <translation>Bölümlemeyi kaldı&amp;r</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3738"/>
+        <source>Remove the current split</source>
+        <translation>Geçerli ayrımı kaldır</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3740"/>
+        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
         <source>Next split</source>
         <translation>Sonraki ayrım</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3724"/>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
         <source>&amp;Next split</source>
         <translation>So&amp;nraki ayrım</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3724"/>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation>Ctrl+Alt+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3731"/>
+        <location filename="../ViewManager/ViewManager.py" line="3755"/>
         <source>Move to the next split</source>
         <translation>Sonraki ayrıma taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3733"/>
+        <location filename="../ViewManager/ViewManager.py" line="3757"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sonraki ayrım&lt;/b&gt;&lt;p&gt;Sonraki ayrıma götürür.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>Previous split</source>
         <translation>Önceki ayrım</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>&amp;Previous split</source>
         <translation>Önceki a&amp;yrım</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation>Ctrl+Alt+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3747"/>
+        <location filename="../ViewManager/ViewManager.py" line="3771"/>
         <source>Move to the previous split</source>
         <translation>Önceki ayrıma taşı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3749"/>
+        <location filename="../ViewManager/ViewManager.py" line="3773"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3833"/>
+        <location filename="../ViewManager/ViewManager.py" line="3857"/>
         <source>&amp;View</source>
         <translation>&amp;Görünüm</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3870"/>
+        <location filename="../ViewManager/ViewManager.py" line="3894"/>
         <source>View</source>
         <translation>Görünüm</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3906"/>
-        <source>Start Macro Recording</source>
-        <translation>Makro Kaydı Başladı</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3900"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation>Makro Kaydını Başla&amp;t</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3908"/>
-        <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
-        <source>Stop Macro Recording</source>
-        <translation>Makro Kaydetmeyi Durdur</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3916"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation>Makro Kaydetmeyi D&amp;urdur</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3922"/>
-        <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3934"/>
-        <source>Run Macro</source>
-        <translation>Makroyu çalıştır</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3930"/>
-        <source>&amp;Run Macro</source>
-        <translation>Mak&amp;royu çalıştır</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3936"/>
-        <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Makroyu Çalıştır&lt;/b&gt;&lt;p&gt;Daha önceden kaydedilmiş düzenleyici makrosu.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3948"/>
-        <source>Delete Macro</source>
-        <translation>Makroyu Sil</translation>
+        <source>Start Macro Recording</source>
+        <translation>Makro Kaydı Başladı</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3924"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation>Makro Kaydını Başla&amp;t</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3932"/>
+        <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3944"/>
-        <source>&amp;Delete Macro</source>
-        <translation>Makroy&amp;u Sil</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3950"/>
-        <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Makroyu Sil&lt;/b&gt;&lt;p&gt;Birönce kaydedilen düzenleyici makrosunu sil.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3962"/>
-        <source>Load Macro</source>
-        <translation>Makroyu Yükle</translation>
+        <source>Stop Macro Recording</source>
+        <translation>Makro Kaydetmeyi Durdur</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3940"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation>Makro Kaydetmeyi D&amp;urdur</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3946"/>
+        <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3958"/>
-        <source>&amp;Load Macro</source>
-        <translation>Makroyu Yük&amp;le</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3964"/>
-        <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3976"/>
-        <source>Save Macro</source>
-        <translation>Makroyu Kaydet</translation>
+        <source>Run Macro</source>
+        <translation>Makroyu çalıştır</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3954"/>
+        <source>&amp;Run Macro</source>
+        <translation>Mak&amp;royu çalıştır</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3960"/>
+        <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Makroyu Çalıştır&lt;/b&gt;&lt;p&gt;Daha önceden kaydedilmiş düzenleyici makrosu.&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3972"/>
+        <source>Delete Macro</source>
+        <translation>Makroyu Sil</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3968"/>
+        <source>&amp;Delete Macro</source>
+        <translation>Makroy&amp;u Sil</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3974"/>
+        <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Makroyu Sil&lt;/b&gt;&lt;p&gt;Birönce kaydedilen düzenleyici makrosunu sil.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3986"/>
+        <source>Load Macro</source>
+        <translation>Makroyu Yükle</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3982"/>
+        <source>&amp;Load Macro</source>
+        <translation>Makroyu Yük&amp;le</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3988"/>
+        <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4000"/>
+        <source>Save Macro</source>
+        <translation>Makroyu Kaydet</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3996"/>
         <source>&amp;Save Macro</source>
         <translation>Ma&amp;kroyu Kaydet</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3978"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Makro Kaydet&lt;/b&gt;&lt;p&gt;Önceden kayıt edilen makroyu bir dosyada sakla.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3994"/>
+        <location filename="../ViewManager/ViewManager.py" line="4018"/>
         <source>&amp;Macros</source>
         <translation>&amp;Makrolar</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4020"/>
+        <location filename="../ViewManager/ViewManager.py" line="4044"/>
         <source>Toggle Bookmark</source>
         <translation>Yerimi Açkapa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
         <source>&amp;Toggle Bookmark</source>
         <translation>Yerimi A&amp;çkapa</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation>Alt+Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4022"/>
+        <location filename="../ViewManager/ViewManager.py" line="4046"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4039"/>
+        <location filename="../ViewManager/ViewManager.py" line="4063"/>
         <source>Next Bookmark</source>
         <translation>Sonraki Yerimi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>&amp;Next Bookmark</source>
         <translation>So&amp;nraki Yerimi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation>Ctrl+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4041"/>
+        <location filename="../ViewManager/ViewManager.py" line="4065"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <location filename="../ViewManager/ViewManager.py" line="4081"/>
         <source>Previous Bookmark</source>
         <translation>Önceki Yerimi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <location filename="../ViewManager/ViewManager.py" line="4073"/>
         <source>&amp;Previous Bookmark</source>
         <translation>Önceki Yeri&amp;mi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <location filename="../ViewManager/ViewManager.py" line="4073"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation>Ctrl+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4059"/>
+        <location filename="../ViewManager/ViewManager.py" line="4083"/>
         <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4074"/>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <source>Clear Bookmarks</source>
         <translation>Yerimlerini Temizle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4091"/>
         <source>&amp;Clear Bookmarks</source>
         <translation>Yerimlerini &amp;Temizle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4091"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation>Alt+Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4076"/>
+        <location filename="../ViewManager/ViewManager.py" line="4100"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Yerimlerini Temizle&lt;/b&gt;&lt;p&gt;Tüm düzenleyicilerin yerimlerini temizle&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <location filename="../ViewManager/ViewManager.py" line="4114"/>
         <source>Goto Syntax Error</source>
         <translation>Sözdizimi Hatasına Git</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4084"/>
+        <location filename="../ViewManager/ViewManager.py" line="4108"/>
         <source>&amp;Goto Syntax Error</source>
         <translation>Sözdizimi Hatasına &amp;Git</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4092"/>
-        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4105"/>
-        <source>Clear Syntax Errors</source>
-        <translation>Sözdizimi Hatalarını Temizle</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4100"/>
-        <source>Clear &amp;Syntax Errors</source>
-        <translation>&amp;Sözdizimi Hatalarını Temizli</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4107"/>
-        <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;Sözdizimi Hatalarını Temizle&lt;/b&gt;&lt;p&gt;Tüm düsenleyicilerdeki sözdizimi hatalarını temizle.&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4122"/>
-        <source>Next warning message</source>
-        <translation>Sonraki uyarı mesajı</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4116"/>
+        <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4129"/>
+        <source>Clear Syntax Errors</source>
+        <translation>Sözdizimi Hatalarını Temizle</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4124"/>
+        <source>Clear &amp;Syntax Errors</source>
+        <translation>&amp;Sözdizimi Hatalarını Temizli</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4131"/>
+        <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;Sözdizimi Hatalarını Temizle&lt;/b&gt;&lt;p&gt;Tüm düsenleyicilerdeki sözdizimi hatalarını temizle.&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4146"/>
+        <source>Next warning message</source>
+        <translation>Sonraki uyarı mesajı</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4140"/>
         <source>&amp;Next warning message</source>
         <translation>So&amp;nraki uyarı mesajı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4141"/>
+        <location filename="../ViewManager/ViewManager.py" line="4165"/>
         <source>Previous warning message</source>
         <translation>Önceki uyarı mesajı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4133"/>
+        <location filename="../ViewManager/ViewManager.py" line="4157"/>
         <source>&amp;Previous warning message</source>
         <translation>&amp;Önceki uyarı mesajı</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4159"/>
+        <location filename="../ViewManager/ViewManager.py" line="4183"/>
         <source>Clear Warning Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4152"/>
+        <location filename="../ViewManager/ViewManager.py" line="4176"/>
         <source>Clear &amp;Warning Messages</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4175"/>
+        <location filename="../ViewManager/ViewManager.py" line="4199"/>
         <source>Next uncovered line</source>
         <translation>Sonraki kapanmamış satır</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4169"/>
+        <location filename="../ViewManager/ViewManager.py" line="4193"/>
         <source>&amp;Next uncovered line</source>
         <translation>So&amp;nraki kapanmamış satır</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4177"/>
+        <location filename="../ViewManager/ViewManager.py" line="4201"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4194"/>
+        <location filename="../ViewManager/ViewManager.py" line="4218"/>
         <source>Previous uncovered line</source>
         <translation>Önceki kaplanmamış satır</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4186"/>
+        <location filename="../ViewManager/ViewManager.py" line="4210"/>
         <source>&amp;Previous uncovered line</source>
         <translation>&amp;Önceki kaplanmamış satır</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4196"/>
+        <location filename="../ViewManager/ViewManager.py" line="4220"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4236"/>
         <source>Next Task</source>
         <translation>Sonraki Görev</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4206"/>
+        <location filename="../ViewManager/ViewManager.py" line="4230"/>
         <source>&amp;Next Task</source>
         <translation>So&amp;nraki Görev</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4214"/>
+        <location filename="../ViewManager/ViewManager.py" line="4238"/>
         <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Sonraki Görev &lt;/b&gt;&lt;p&gt;Geçerli düzenleyicideki bir sonraki satıra görev almak için git.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4229"/>
+        <location filename="../ViewManager/ViewManager.py" line="4253"/>
         <source>Previous Task</source>
         <translation>Önceki Görev</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4222"/>
+        <location filename="../ViewManager/ViewManager.py" line="4246"/>
         <source>&amp;Previous Task</source>
         <translation>Ön&amp;ceki Görev</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4255"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4285"/>
+        <location filename="../ViewManager/ViewManager.py" line="4309"/>
         <source>&amp;Bookmarks</source>
         <translation>&amp;Yerimleri</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4355"/>
         <source>Bookmarks</source>
         <translation>Yerimleri</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4373"/>
+        <location filename="../ViewManager/ViewManager.py" line="4397"/>
         <source>Perform spell check of current editor</source>
         <translation>Geçerli düzenleyicide yazım denetimini gerçekleştir</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4383"/>
+        <location filename="../ViewManager/ViewManager.py" line="4407"/>
         <source>Automatic spell checking</source>
         <translation>Otomatik yazım kontrolü</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4383"/>
+        <location filename="../ViewManager/ViewManager.py" line="4407"/>
         <source>&amp;Automatic spell checking</source>
         <translation>Otom&amp;atik yazım kontrolü</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4391"/>
+        <location filename="../ViewManager/ViewManager.py" line="4415"/>
         <source>(De-)Activate automatic spell checking</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4393"/>
+        <location filename="../ViewManager/ViewManager.py" line="4417"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;Otomatik metin kontrolü&lt;/b&gt;&lt;p&gt;Tüm düzenleyicilerdeki otomatik metin kontrolünü aktifleştir yada etkinliğini kaldır.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4460"/>
+        <location filename="../ViewManager/ViewManager.py" line="4484"/>
         <source>Spelling</source>
         <translation>Yazım kontolü yapılıyor</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4483"/>
+        <location filename="../ViewManager/ViewManager.py" line="4507"/>
         <source>Open files</source>
         <translation>Dosyaları aç</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4527"/>
+        <location filename="../ViewManager/ViewManager.py" line="4551"/>
         <source>File Modified</source>
         <translation>Dosya Değiştirildi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4527"/>
+        <location filename="../ViewManager/ViewManager.py" line="4551"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;&lt;b&gt;{0}&lt;/b&gt;dosyasında kaydedilmemiş değişiklikler var.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4926"/>
+        <location filename="../ViewManager/ViewManager.py" line="4950"/>
         <source>Line: {0:5}</source>
         <translation>Satır: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4932"/>
+        <location filename="../ViewManager/ViewManager.py" line="4956"/>
         <source>Pos: {0:5}</source>
         <translation>Pos: {0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5371"/>
+        <location filename="../ViewManager/ViewManager.py" line="5395"/>
         <source>&amp;Clear</source>
         <translation>T&amp;emizle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5365"/>
+        <location filename="../ViewManager/ViewManager.py" line="5389"/>
         <source>&amp;Add</source>
         <translation>&amp;Ekle</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5368"/>
+        <location filename="../ViewManager/ViewManager.py" line="5392"/>
         <source>&amp;Edit...</source>
         <translation>Düz&amp;en...</translation>
     </message>
@@ -84117,425 +84112,425 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3200"/>
+        <location filename="../ViewManager/ViewManager.py" line="3224"/>
         <source>Goto Last Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3213"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3213"/>
         <source>Ctrl+Shift+G</source>
         <comment>Search|Goto Last Edit Location</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3203"/>
+        <location filename="../ViewManager/ViewManager.py" line="3227"/>
         <source>&lt;b&gt;Goto Last Edit Location&lt;/b&gt;&lt;p&gt;Go to the location of the last edit in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3212"/>
-        <source>Goto Previous Method or Class</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3212"/>
-        <source>Ctrl+Shift+Up</source>
-        <comment>Search|Goto Previous Method or Class</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3222"/>
-        <source>Go to the previous method or class definition</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3226"/>
-        <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3236"/>
-        <source>Goto Next Method or Class</source>
+        <source>Goto Previous Method or Class</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3236"/>
-        <source>Ctrl+Shift+Down</source>
-        <comment>Search|Goto Next Method or Class</comment>
+        <source>Ctrl+Shift+Up</source>
+        <comment>Search|Goto Previous Method or Class</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3246"/>
+        <source>Go to the previous method or class definition</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3250"/>
+        <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3260"/>
+        <source>Goto Next Method or Class</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3260"/>
+        <source>Ctrl+Shift+Down</source>
+        <comment>Search|Goto Next Method or Class</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3270"/>
         <source>Go to the next method or class definition</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3248"/>
+        <location filename="../ViewManager/ViewManager.py" line="3272"/>
         <source>&lt;b&gt;Goto Next Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the next method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3757"/>
+        <location filename="../ViewManager/ViewManager.py" line="3781"/>
         <source>Preview</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3762"/>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <source>Preview the current file in the web browser</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3764"/>
+        <location filename="../ViewManager/ViewManager.py" line="3788"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1489"/>
+        <location filename="../ViewManager/ViewManager.py" line="1511"/>
         <source>Meta+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1502"/>
+        <location filename="../ViewManager/ViewManager.py" line="1524"/>
         <source>Meta+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1514"/>
+        <location filename="../ViewManager/ViewManager.py" line="1536"/>
         <source>Meta+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1526"/>
+        <location filename="../ViewManager/ViewManager.py" line="1548"/>
         <source>Meta+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1587"/>
+        <location filename="../ViewManager/ViewManager.py" line="1609"/>
         <source>Move to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1603"/>
+        <location filename="../ViewManager/ViewManager.py" line="1625"/>
         <source>Move to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1620"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Move to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1628"/>
+        <location filename="../ViewManager/ViewManager.py" line="1650"/>
         <source>Meta+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1696"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Meta+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1702"/>
+        <location filename="../ViewManager/ViewManager.py" line="1724"/>
         <source>Move to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1719"/>
+        <location filename="../ViewManager/ViewManager.py" line="1741"/>
         <source>Move to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1764"/>
+        <location filename="../ViewManager/ViewManager.py" line="1786"/>
         <source>Meta+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1779"/>
+        <location filename="../ViewManager/ViewManager.py" line="1801"/>
         <source>Meta+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1794"/>
+        <location filename="../ViewManager/ViewManager.py" line="1816"/>
         <source>Meta+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1809"/>
+        <location filename="../ViewManager/ViewManager.py" line="1831"/>
         <source>Meta+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1877"/>
+        <location filename="../ViewManager/ViewManager.py" line="1899"/>
         <source>Extend selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1895"/>
+        <location filename="../ViewManager/ViewManager.py" line="1917"/>
         <source>Extend selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1903"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Meta+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1960"/>
+        <location filename="../ViewManager/ViewManager.py" line="1982"/>
         <source>Meta+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1966"/>
+        <location filename="../ViewManager/ViewManager.py" line="1988"/>
         <source>Extend selection to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1974"/>
+        <location filename="../ViewManager/ViewManager.py" line="1996"/>
         <source>Ctrl+Shift+Up</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1983"/>
+        <location filename="../ViewManager/ViewManager.py" line="2005"/>
         <source>Extend selection to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1991"/>
+        <location filename="../ViewManager/ViewManager.py" line="2013"/>
         <source>Ctrl+Shift+Down</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2009"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Meta+H</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2018"/>
+        <location filename="../ViewManager/ViewManager.py" line="2040"/>
         <source>Delete previous character if not at start of line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2039"/>
+        <location filename="../ViewManager/ViewManager.py" line="2061"/>
         <source>Meta+D</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2083"/>
+        <location filename="../ViewManager/ViewManager.py" line="2105"/>
         <source>Meta+K</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2192"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <source>Move to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2209"/>
+        <location filename="../ViewManager/ViewManager.py" line="2231"/>
         <source>Extend selection to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2251"/>
+        <location filename="../ViewManager/ViewManager.py" line="2273"/>
         <source>Meta+Alt+Shift+N</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2266"/>
+        <location filename="../ViewManager/ViewManager.py" line="2288"/>
         <source>Meta+Alt+Shift+P</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2284"/>
+        <location filename="../ViewManager/ViewManager.py" line="2306"/>
         <source>Meta+Alt+Shift+B</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2302"/>
+        <location filename="../ViewManager/ViewManager.py" line="2324"/>
         <source>Meta+Alt+Shift+F</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2308"/>
+        <location filename="../ViewManager/ViewManager.py" line="2330"/>
         <source>Extend rectangular selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2327"/>
+        <location filename="../ViewManager/ViewManager.py" line="2349"/>
         <source>Extend rectangular selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2337"/>
+        <location filename="../ViewManager/ViewManager.py" line="2359"/>
         <source>Meta+Alt+Shift+E</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2340"/>
+        <location filename="../ViewManager/ViewManager.py" line="2362"/>
         <source>Alt+Shift+End</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2361"/>
+        <location filename="../ViewManager/ViewManager.py" line="2383"/>
         <source>Alt+Shift+PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2373"/>
+        <location filename="../ViewManager/ViewManager.py" line="2395"/>
         <source>Meta+Alt+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2393"/>
+        <location filename="../ViewManager/ViewManager.py" line="2415"/>
         <source>Scroll to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2408"/>
+        <location filename="../ViewManager/ViewManager.py" line="2430"/>
         <source>Scroll to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2423"/>
+        <location filename="../ViewManager/ViewManager.py" line="2445"/>
         <source>Scroll vertically to center current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2431"/>
-        <source>Meta+L</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2438"/>
-        <source>Move to end of next word</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2453"/>
+        <source>Meta+L</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2460"/>
+        <source>Move to end of next word</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2475"/>
         <source>Extend selection to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2469"/>
+        <location filename="../ViewManager/ViewManager.py" line="2491"/>
         <source>Move to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2481"/>
+        <location filename="../ViewManager/ViewManager.py" line="2503"/>
         <source>Extend selection to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2493"/>
+        <location filename="../ViewManager/ViewManager.py" line="2515"/>
         <source>Move to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2501"/>
+        <location filename="../ViewManager/ViewManager.py" line="2523"/>
         <source>Meta+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2508"/>
+        <location filename="../ViewManager/ViewManager.py" line="2530"/>
         <source>Extend selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2519"/>
+        <location filename="../ViewManager/ViewManager.py" line="2541"/>
         <source>Meta+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2526"/>
+        <location filename="../ViewManager/ViewManager.py" line="2548"/>
         <source>Extend rectangular selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2536"/>
+        <location filename="../ViewManager/ViewManager.py" line="2558"/>
         <source>Meta+Alt+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2544"/>
+        <location filename="../ViewManager/ViewManager.py" line="2566"/>
         <source>Extend selection to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2563"/>
+        <location filename="../ViewManager/ViewManager.py" line="2585"/>
         <source>Move to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2577"/>
+        <location filename="../ViewManager/ViewManager.py" line="2599"/>
         <source>Extend selection to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2592"/>
+        <location filename="../ViewManager/ViewManager.py" line="2614"/>
         <source>Move to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2609"/>
+        <location filename="../ViewManager/ViewManager.py" line="2631"/>
         <source>Extend selection to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2626"/>
+        <location filename="../ViewManager/ViewManager.py" line="2648"/>
         <source>Move to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2640"/>
+        <location filename="../ViewManager/ViewManager.py" line="2662"/>
         <source>Extend selection to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2655"/>
+        <location filename="../ViewManager/ViewManager.py" line="2677"/>
         <source>Stuttered move up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2667"/>
+        <location filename="../ViewManager/ViewManager.py" line="2689"/>
         <source>Stuttered extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2680"/>
+        <location filename="../ViewManager/ViewManager.py" line="2702"/>
         <source>Stuttered move down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2692"/>
+        <location filename="../ViewManager/ViewManager.py" line="2714"/>
         <source>Stuttered extend selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2705"/>
+        <location filename="../ViewManager/ViewManager.py" line="2727"/>
         <source>Delete right to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2713"/>
+        <location filename="../ViewManager/ViewManager.py" line="2735"/>
         <source>Alt+Del</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2720"/>
+        <location filename="../ViewManager/ViewManager.py" line="2742"/>
         <source>Move selected lines up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2732"/>
+        <location filename="../ViewManager/ViewManager.py" line="2754"/>
         <source>Move selected lines down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2346"/>
+        <location filename="../ViewManager/ViewManager.py" line="2368"/>
         <source>Alt+Shift+PgUp</source>
         <translation type="unfinished"></translation>
     </message>
@@ -84561,39 +84556,39 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Zoom reset</source>
         <translation type="unfinished">Büyütmeyi sıfırla</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Zoom &amp;reset</source>
         <translation type="unfinished">Büyütmeyi sıfı&amp;rla</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation type="unfinished">Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3533"/>
+        <location filename="../ViewManager/ViewManager.py" line="3557"/>
         <source>Reset the zoom of the text</source>
         <translation type="unfinished">Metin büyütme durumunu sıfırla</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3535"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation type="unfinished">&lt;b&gt;Büyütmeyi başa döndür&lt;/b&gt;&lt;p&gt;Metin büyütmesini sıfırla. Bu büyütme katsayısını 100% e ayarlar.&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation type="unfinished"></translation>
@@ -84604,191 +84599,191 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <location filename="../ViewManager/ViewManager.py" line="4270"/>
         <source>Next Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4240"/>
-        <source>&amp;Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4248"/>
-        <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <source>&amp;Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4272"/>
+        <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4288"/>
         <source>Previous Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4257"/>
+        <location filename="../ViewManager/ViewManager.py" line="4281"/>
         <source>&amp;Previous Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4266"/>
+        <location filename="../ViewManager/ViewManager.py" line="4290"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Check spelling</source>
         <translation type="unfinished">Yazım denetimi</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Check &amp;spelling...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4399"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4424"/>
+        <location filename="../ViewManager/ViewManager.py" line="4448"/>
         <source>Edit Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4426"/>
+        <location filename="../ViewManager/ViewManager.py" line="4450"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4429"/>
+        <location filename="../ViewManager/ViewManager.py" line="4453"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4434"/>
+        <location filename="../ViewManager/ViewManager.py" line="4458"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4437"/>
+        <location filename="../ViewManager/ViewManager.py" line="4461"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6630"/>
+        <location filename="../ViewManager/ViewManager.py" line="6654"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6607"/>
+        <location filename="../ViewManager/ViewManager.py" line="6631"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6589"/>
+        <location filename="../ViewManager/ViewManager.py" line="6613"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6618"/>
+        <location filename="../ViewManager/ViewManager.py" line="6642"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6630"/>
+        <location filename="../ViewManager/ViewManager.py" line="6654"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2955"/>
+        <location filename="../ViewManager/ViewManager.py" line="2979"/>
         <source>Search current word forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2955"/>
+        <location filename="../ViewManager/ViewManager.py" line="2979"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation type="unfinished">Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2966"/>
+        <location filename="../ViewManager/ViewManager.py" line="2990"/>
         <source>Search next occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2969"/>
+        <location filename="../ViewManager/ViewManager.py" line="2993"/>
         <source>&lt;b&gt;Search current word forward&lt;/b&gt;&lt;p&gt;Search the next occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2978"/>
+        <location filename="../ViewManager/ViewManager.py" line="3002"/>
         <source>Search current word backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2978"/>
+        <location filename="../ViewManager/ViewManager.py" line="3002"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2989"/>
+        <location filename="../ViewManager/ViewManager.py" line="3013"/>
         <source>Search previous occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2992"/>
+        <location filename="../ViewManager/ViewManager.py" line="3016"/>
         <source>&lt;b&gt;Search current word backward&lt;/b&gt;&lt;p&gt;Search the previous occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Search in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Search in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Meta+Ctrl+Alt+F</source>
         <comment>Search|Search Open Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3310"/>
-        <source>Search for a text in open files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3312"/>
-        <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
-        <source>Replace in Open Files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
-        <source>Meta+Ctrl+Alt+R</source>
-        <comment>Search|Replace in Open Files</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3332"/>
-        <source>Search for a text in open files and replace it</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3334"/>
+        <source>Search for a text in open files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3336"/>
+        <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
+        <source>Replace in Open Files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
+        <source>Meta+Ctrl+Alt+R</source>
+        <comment>Search|Replace in Open Files</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
+        <source>Search for a text in open files and replace it</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3358"/>
         <source>&lt;b&gt;Replace in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
         <source>Replace in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -84814,62 +84809,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4953"/>
+        <location filename="../ViewManager/ViewManager.py" line="4977"/>
         <source>Language: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4960"/>
+        <location filename="../ViewManager/ViewManager.py" line="4984"/>
         <source>EOL Mode: {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3641"/>
+        <location filename="../ViewManager/ViewManager.py" line="3665"/>
         <source>New Document View</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3641"/>
-        <source>New &amp;Document View</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3646"/>
-        <source>Open a new view of the current document</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3648"/>
-        <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3658"/>
-        <source>New Document View (with new split)</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3665"/>
+        <source>New &amp;Document View</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3670"/>
+        <source>Open a new view of the current document</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3672"/>
+        <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3682"/>
+        <source>New Document View (with new split)</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3689"/>
         <source>Open a new view of the current document in a new split</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3668"/>
+        <location filename="../ViewManager/ViewManager.py" line="3692"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4124"/>
+        <location filename="../ViewManager/ViewManager.py" line="4148"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4143"/>
+        <location filename="../ViewManager/ViewManager.py" line="4167"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4161"/>
+        <location filename="../ViewManager/ViewManager.py" line="4185"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -84944,65 +84939,65 @@
         <translation type="unfinished">Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3020"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Replace and Search</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3020"/>
-        <source>Meta+R</source>
-        <comment>Search|Replace and Search</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3030"/>
-        <source>Replace the found text and search the next occurrence</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3033"/>
-        <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3044"/>
-        <source>Replace Occurrence</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3044"/>
-        <source>Ctrl+Meta+R</source>
-        <comment>Search|Replace Occurrence</comment>
+        <source>Meta+R</source>
+        <comment>Search|Replace and Search</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3054"/>
-        <source>Replace the found text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3056"/>
-        <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3066"/>
-        <source>Replace All</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3066"/>
-        <source>Shift+Meta+R</source>
-        <comment>Search|Replace All</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3076"/>
-        <source>Replace search text occurrences</source>
+        <source>Replace the found text and search the next occurrence</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3057"/>
+        <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <source>Replace Occurrence</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <source>Ctrl+Meta+R</source>
+        <comment>Search|Replace Occurrence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3078"/>
+        <source>Replace the found text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3080"/>
+        <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <source>Replace All</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <source>Shift+Meta+R</source>
+        <comment>Search|Replace All</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
+        <source>Replace search text occurrences</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3102"/>
         <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -85028,57 +85023,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <location filename="../ViewManager/ViewManager.py" line="3638"/>
         <source>Clear all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3610"/>
+        <location filename="../ViewManager/ViewManager.py" line="3634"/>
         <source>Clear &amp;all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3616"/>
+        <location filename="../ViewManager/ViewManager.py" line="3640"/>
         <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Reverse selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Meta+Alt+R</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3774"/>
-        <source>Python AST Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3779"/>
-        <source>Show the AST for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3781"/>
-        <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3791"/>
-        <source>Python Disassembly Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Python AST Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3803"/>
+        <source>Show the AST for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3805"/>
+        <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3815"/>
+        <source>Python Disassembly Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
         <source>Show the Disassembly for the current Python file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3800"/>
+        <location filename="../ViewManager/ViewManager.py" line="3824"/>
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -85097,6 +85092,27 @@
         <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1468"/>
+        <source>Generate Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1468"/>
+        <source>Ctrl+Alt+D</source>
+        <comment>Edit|Generate Docstring</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1475"/>
+        <source>Generate a docstring for the current function/method</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1478"/>
+        <source>&lt;b&gt;Generate Docstring&lt;/b&gt;&lt;p&gt;Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>
--- a/eric6/i18n/eric6_zh_CN.ts	Fri Jan 22 16:55:43 2021 +0100
+++ b/eric6/i18n/eric6_zh_CN.ts	Sat Jan 23 12:02:52 2021 +0100
@@ -11424,17 +11424,17 @@
         <translation>块注释</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="828"/>
+        <location filename="../QScintilla/Editor.py" line="832"/>
         <source>Select to brace</source>
         <translation>选择括号内容</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="830"/>
+        <location filename="../QScintilla/Editor.py" line="834"/>
         <source>Select all</source>
         <translation>全选</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="831"/>
+        <location filename="../QScintilla/Editor.py" line="835"/>
         <source>Deselect all</source>
         <translation>全部取消选择</translation>
     </message>
@@ -11444,7 +11444,7 @@
         <translation>正在进行拼写检查…</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="839"/>
+        <location filename="../QScintilla/Editor.py" line="843"/>
         <source>Check spelling of selection...</source>
         <translation>正在对所选内容进行拼写检查…</translation>
     </message>
@@ -11989,7 +11989,7 @@
         <translation>全部忽略</translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="843"/>
+        <location filename="../QScintilla/Editor.py" line="847"/>
         <source>Remove from dictionary</source>
         <translation>从词典里移除</translation>
     </message>
@@ -12279,12 +12279,7 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../QScintilla/Editor.py" line="849"/>
-        <source>Insert Docstring</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../QScintilla/Editor.py" line="8715"/>
+        <location filename="../QScintilla/Editor.py" line="8726"/>
         <source>Generate Docstring</source>
         <translation type="unfinished"></translation>
     </message>
@@ -84212,7 +84207,7 @@
         <translation>补全(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2776"/>
+        <location filename="../ViewManager/ViewManager.py" line="2798"/>
         <source>Complete</source>
         <translation>补全</translation>
     </message>
@@ -84298,1549 +84293,1549 @@
         <translation>&lt;b&gt;调用提示&lt;/b&gt;&lt;p&gt;根据光标左边的字符即时显示调用提示。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Move left one character</source>
         <translation>左移一个字符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1480"/>
+        <location filename="../ViewManager/ViewManager.py" line="1502"/>
         <source>Left</source>
         <translation>Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1494"/>
+        <location filename="../ViewManager/ViewManager.py" line="1516"/>
         <source>Move right one character</source>
         <translation>右移一个字符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1494"/>
+        <location filename="../ViewManager/ViewManager.py" line="1516"/>
         <source>Right</source>
         <translation>Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1508"/>
+        <location filename="../ViewManager/ViewManager.py" line="1530"/>
         <source>Move up one line</source>
         <translation>上移一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1508"/>
+        <location filename="../ViewManager/ViewManager.py" line="1530"/>
         <source>Up</source>
         <translation>Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1520"/>
+        <location filename="../ViewManager/ViewManager.py" line="1542"/>
         <source>Move down one line</source>
         <translation>下移一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1520"/>
+        <location filename="../ViewManager/ViewManager.py" line="1542"/>
         <source>Down</source>
         <translation>Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1532"/>
+        <location filename="../ViewManager/ViewManager.py" line="1554"/>
         <source>Move left one word part</source>
         <translation>左移一个单词部分</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1566"/>
+        <location filename="../ViewManager/ViewManager.py" line="1588"/>
         <source>Alt+Left</source>
         <translation>Alt+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1546"/>
+        <location filename="../ViewManager/ViewManager.py" line="1568"/>
         <source>Move right one word part</source>
         <translation>右移一个单词部分</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2446"/>
+        <location filename="../ViewManager/ViewManager.py" line="2468"/>
         <source>Alt+Right</source>
         <translation>Alt+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1560"/>
+        <location filename="../ViewManager/ViewManager.py" line="1582"/>
         <source>Move left one word</source>
         <translation>左移一个词距</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1611"/>
+        <location filename="../ViewManager/ViewManager.py" line="1633"/>
         <source>Ctrl+Left</source>
         <translation>Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1575"/>
+        <location filename="../ViewManager/ViewManager.py" line="1597"/>
         <source>Move right one word</source>
         <translation>右移一个词距</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2200"/>
+        <location filename="../ViewManager/ViewManager.py" line="2222"/>
         <source>Ctrl+Right</source>
         <translation>Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2401"/>
+        <location filename="../ViewManager/ViewManager.py" line="2423"/>
         <source>Home</source>
         <translation>Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1614"/>
+        <location filename="../ViewManager/ViewManager.py" line="1636"/>
         <source>Alt+Home</source>
         <translation>Alt+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2416"/>
+        <location filename="../ViewManager/ViewManager.py" line="2438"/>
         <source>End</source>
         <translation>End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1637"/>
+        <location filename="../ViewManager/ViewManager.py" line="1659"/>
         <source>Scroll view down one line</source>
         <translation>视图向下滚动一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1727"/>
+        <location filename="../ViewManager/ViewManager.py" line="1749"/>
         <source>Ctrl+Down</source>
         <translation>Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1649"/>
+        <location filename="../ViewManager/ViewManager.py" line="1671"/>
         <source>Scroll view up one line</source>
         <translation>视图向上滚动一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1710"/>
+        <location filename="../ViewManager/ViewManager.py" line="1732"/>
         <source>Ctrl+Up</source>
         <translation>Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1660"/>
+        <location filename="../ViewManager/ViewManager.py" line="1682"/>
         <source>Move up one paragraph</source>
         <translation>上移一段</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1660"/>
+        <location filename="../ViewManager/ViewManager.py" line="1682"/>
         <source>Alt+Up</source>
         <translation>Alt+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1669"/>
+        <location filename="../ViewManager/ViewManager.py" line="1691"/>
         <source>Move down one paragraph</source>
         <translation>下移一段</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1669"/>
+        <location filename="../ViewManager/ViewManager.py" line="1691"/>
         <source>Alt+Down</source>
         <translation>Alt+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1681"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>Move up one page</source>
         <translation>上移一页</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1681"/>
+        <location filename="../ViewManager/ViewManager.py" line="1703"/>
         <source>PgUp</source>
         <translation>PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1690"/>
+        <location filename="../ViewManager/ViewManager.py" line="1712"/>
         <source>Move down one page</source>
         <translation>下移一页</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1690"/>
+        <location filename="../ViewManager/ViewManager.py" line="1712"/>
         <source>PgDown</source>
         <translation>PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1713"/>
+        <location filename="../ViewManager/ViewManager.py" line="1735"/>
         <source>Ctrl+Home</source>
         <translation>Ctrl+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1730"/>
+        <location filename="../ViewManager/ViewManager.py" line="1752"/>
         <source>Ctrl+End</source>
         <translation>Ctrl+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Indent one level</source>
         <translation>缩进一级</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1736"/>
+        <location filename="../ViewManager/ViewManager.py" line="1758"/>
         <source>Tab</source>
         <translation>Tab 键</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1745"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Unindent one level</source>
         <translation>取消缩进一级</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1745"/>
+        <location filename="../ViewManager/ViewManager.py" line="1767"/>
         <source>Shift+Tab</source>
         <translation>Shift+Tab</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1755"/>
+        <location filename="../ViewManager/ViewManager.py" line="1777"/>
         <source>Extend selection left one character</source>
         <translation>选区向左扩展一个字符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1755"/>
+        <location filename="../ViewManager/ViewManager.py" line="1777"/>
         <source>Shift+Left</source>
         <translation>Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1770"/>
+        <location filename="../ViewManager/ViewManager.py" line="1792"/>
         <source>Extend selection right one character</source>
         <translation>选区向右扩展一个字符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1770"/>
+        <location filename="../ViewManager/ViewManager.py" line="1792"/>
         <source>Shift+Right</source>
         <translation>Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1785"/>
+        <location filename="../ViewManager/ViewManager.py" line="1807"/>
         <source>Extend selection up one line</source>
         <translation>选区向上扩展一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1785"/>
+        <location filename="../ViewManager/ViewManager.py" line="1807"/>
         <source>Shift+Up</source>
         <translation>Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1800"/>
+        <location filename="../ViewManager/ViewManager.py" line="1822"/>
         <source>Extend selection down one line</source>
         <translation>选区向下扩展一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1800"/>
+        <location filename="../ViewManager/ViewManager.py" line="1822"/>
         <source>Shift+Down</source>
         <translation>Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1815"/>
+        <location filename="../ViewManager/ViewManager.py" line="1837"/>
         <source>Extend selection left one word part</source>
         <translation>选区向左扩展一个单词部分</translation>
     </message>
     <message>
+        <location filename="../ViewManager/ViewManager.py" line="1873"/>
+        <source>Alt+Shift+Left</source>
+        <translation>Alt+Shift+Left</translation>
+    </message>
+    <message>
         <location filename="../ViewManager/ViewManager.py" line="1851"/>
-        <source>Alt+Shift+Left</source>
-        <translation>Alt+Shift+Left</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="1829"/>
         <source>Extend selection right one word part</source>
         <translation>选区向右扩展一个单词部分</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2461"/>
+        <location filename="../ViewManager/ViewManager.py" line="2483"/>
         <source>Alt+Shift+Right</source>
         <translation>Alt+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1843"/>
+        <location filename="../ViewManager/ViewManager.py" line="1865"/>
         <source>Extend selection left one word</source>
         <translation>选区向左扩展一个单词</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2555"/>
+        <location filename="../ViewManager/ViewManager.py" line="2577"/>
         <source>Ctrl+Shift+Left</source>
         <translation>Ctrl+Shift+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1860"/>
+        <location filename="../ViewManager/ViewManager.py" line="1882"/>
         <source>Extend selection right one word</source>
         <translation>选区向右扩展一个单词</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2217"/>
+        <location filename="../ViewManager/ViewManager.py" line="2239"/>
         <source>Ctrl+Shift+Right</source>
         <translation>Ctrl+Shift+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1889"/>
+        <location filename="../ViewManager/ViewManager.py" line="1911"/>
         <source>Shift+Home</source>
         <translation>Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2321"/>
+        <location filename="../ViewManager/ViewManager.py" line="2343"/>
         <source>Alt+Shift+Home</source>
         <translation>Alt+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1906"/>
+        <location filename="../ViewManager/ViewManager.py" line="1928"/>
         <source>Shift+End</source>
         <translation>Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1912"/>
+        <location filename="../ViewManager/ViewManager.py" line="1934"/>
         <source>Extend selection up one paragraph</source>
         <translation>选区向上扩展一段</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1912"/>
+        <location filename="../ViewManager/ViewManager.py" line="1934"/>
         <source>Alt+Shift+Up</source>
         <translation>Alt+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1925"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Extend selection down one paragraph</source>
         <translation>选区向下扩展一段</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1925"/>
+        <location filename="../ViewManager/ViewManager.py" line="1947"/>
         <source>Alt+Shift+Down</source>
         <translation>Alt+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Extend selection up one page</source>
         <translation>选区向上扩展一页</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1938"/>
+        <location filename="../ViewManager/ViewManager.py" line="1960"/>
         <source>Shift+PgUp</source>
         <translation>Shift+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1950"/>
+        <location filename="../ViewManager/ViewManager.py" line="1972"/>
         <source>Extend selection down one page</source>
         <translation>选区向下扩展一页</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1950"/>
+        <location filename="../ViewManager/ViewManager.py" line="1972"/>
         <source>Shift+PgDown</source>
         <translation>Shift+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1977"/>
+        <location filename="../ViewManager/ViewManager.py" line="1999"/>
         <source>Ctrl+Shift+Home</source>
         <translation>Ctrl+Shift+Home</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1994"/>
+        <location filename="../ViewManager/ViewManager.py" line="2016"/>
         <source>Ctrl+Shift+End</source>
         <translation>Ctrl+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2000"/>
+        <location filename="../ViewManager/ViewManager.py" line="2022"/>
         <source>Delete previous character</source>
         <translation>删除前一个字符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2000"/>
+        <location filename="../ViewManager/ViewManager.py" line="2022"/>
         <source>Backspace</source>
         <translation>Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2012"/>
+        <location filename="../ViewManager/ViewManager.py" line="2034"/>
         <source>Shift+Backspace</source>
         <translation>Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2031"/>
+        <location filename="../ViewManager/ViewManager.py" line="2053"/>
         <source>Delete current character</source>
         <translation>删除当前字符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2031"/>
+        <location filename="../ViewManager/ViewManager.py" line="2053"/>
         <source>Del</source>
         <translation>Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2045"/>
+        <location filename="../ViewManager/ViewManager.py" line="2067"/>
         <source>Delete word to left</source>
         <translation>向左删除一个单词</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2045"/>
+        <location filename="../ViewManager/ViewManager.py" line="2067"/>
         <source>Ctrl+Backspace</source>
         <translation>Ctrl+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2056"/>
+        <location filename="../ViewManager/ViewManager.py" line="2078"/>
         <source>Delete word to right</source>
         <translation>向右删除一个单词</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2056"/>
+        <location filename="../ViewManager/ViewManager.py" line="2078"/>
         <source>Ctrl+Del</source>
         <translation>Ctrl+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2066"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Delete line to left</source>
         <translation>向左删除一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2066"/>
+        <location filename="../ViewManager/ViewManager.py" line="2088"/>
         <source>Ctrl+Shift+Backspace</source>
         <translation>Ctrl+Shift+Backspace</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2077"/>
+        <location filename="../ViewManager/ViewManager.py" line="2099"/>
         <source>Delete line to right</source>
         <translation>向右删除一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2086"/>
+        <location filename="../ViewManager/ViewManager.py" line="2108"/>
         <source>Ctrl+Shift+Del</source>
         <translation>Ctrl+Shift+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Insert new line</source>
         <translation>插入新行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Return</source>
         <translation>Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2092"/>
+        <location filename="../ViewManager/ViewManager.py" line="2114"/>
         <source>Enter</source>
         <translation>Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Insert new line below current line</source>
         <translation>在当前行之上插入新行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Shift+Return</source>
         <translation>Shift+Return</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2102"/>
+        <location filename="../ViewManager/ViewManager.py" line="2124"/>
         <source>Shift+Enter</source>
         <translation>Shift+Enter</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2115"/>
-        <source>Delete current line</source>
-        <translation>删除当前行</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2115"/>
-        <source>Ctrl+Shift+L</source>
-        <translation>Ctrl+Shift+L</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2126"/>
-        <source>Duplicate current line</source>
-        <translation>重复当前行</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2126"/>
-        <source>Ctrl+D</source>
-        <translation>Ctrl+D</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2137"/>
-        <source>Swap current and previous lines</source>
-        <translation>当前行与上一行交换位置</translation>
+        <source>Delete current line</source>
+        <translation>删除当前行</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="2137"/>
+        <source>Ctrl+Shift+L</source>
+        <translation>Ctrl+Shift+L</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <source>Duplicate current line</source>
+        <translation>重复当前行</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <source>Ctrl+D</source>
+        <translation>Ctrl+D</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2159"/>
+        <source>Swap current and previous lines</source>
+        <translation>当前行与上一行交换位置</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2159"/>
         <source>Ctrl+T</source>
         <translation>Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2160"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Cut current line</source>
         <translation>剪切当前行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2160"/>
+        <location filename="../ViewManager/ViewManager.py" line="2182"/>
         <source>Alt+Shift+L</source>
         <translation>Alt+Shift+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2170"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Copy current line</source>
         <translation>复制当前行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2170"/>
+        <location filename="../ViewManager/ViewManager.py" line="2192"/>
         <source>Ctrl+Shift+T</source>
         <translation>Ctrl+Shift+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
+        <location filename="../ViewManager/ViewManager.py" line="2203"/>
         <source>Toggle insert/overtype</source>
         <translation>切换插入/改写状态</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2181"/>
-        <source>Ins</source>
-        <translation>Ins</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2745"/>
-        <source>Convert selection to lower case</source>
-        <translation>将所选内容转换成小写</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2745"/>
-        <source>Alt+Shift+U</source>
-        <translation>Alt+Shift+U</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2757"/>
-        <source>Convert selection to upper case</source>
-        <translation>将所选内容转换成大写</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2757"/>
-        <source>Ctrl+Shift+U</source>
-        <translation>Ctrl+Shift+U</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2203"/>
+        <source>Ins</source>
+        <translation>Ins</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2767"/>
+        <source>Convert selection to lower case</source>
+        <translation>将所选内容转换成小写</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2767"/>
+        <source>Alt+Shift+U</source>
+        <translation>Alt+Shift+U</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2779"/>
+        <source>Convert selection to upper case</source>
+        <translation>将所选内容转换成大写</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2779"/>
+        <source>Ctrl+Shift+U</source>
+        <translation>Ctrl+Shift+U</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2225"/>
         <source>Alt+End</source>
         <translation>Alt+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2223"/>
+        <location filename="../ViewManager/ViewManager.py" line="2245"/>
         <source>Formfeed</source>
         <translation>Formfeed</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2232"/>
+        <location filename="../ViewManager/ViewManager.py" line="2254"/>
         <source>Escape</source>
         <translation>Escape</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2232"/>
+        <location filename="../ViewManager/ViewManager.py" line="2254"/>
         <source>Esc</source>
         <translation>Esc</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2241"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Extend rectangular selection down one line</source>
         <translation>矩形选区向下扩展一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2241"/>
+        <location filename="../ViewManager/ViewManager.py" line="2263"/>
         <source>Alt+Ctrl+Down</source>
         <translation>Alt+Ctrl+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2257"/>
+        <location filename="../ViewManager/ViewManager.py" line="2279"/>
         <source>Extend rectangular selection up one line</source>
         <translation>矩形选区向上扩展一行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2257"/>
+        <location filename="../ViewManager/ViewManager.py" line="2279"/>
         <source>Alt+Ctrl+Up</source>
         <translation>Alt+Ctrl+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2272"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Extend rectangular selection left one character</source>
         <translation>矩形选区向左扩展一个字符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2272"/>
+        <location filename="../ViewManager/ViewManager.py" line="2294"/>
         <source>Alt+Ctrl+Left</source>
         <translation>Alt+Ctrl+Left</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2290"/>
+        <location filename="../ViewManager/ViewManager.py" line="2312"/>
         <source>Extend rectangular selection right one character</source>
         <translation>矩形选区向右扩展一个字符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2290"/>
+        <location filename="../ViewManager/ViewManager.py" line="2312"/>
         <source>Alt+Ctrl+Right</source>
         <translation>Alt+Ctrl+Right</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2346"/>
+        <location filename="../ViewManager/ViewManager.py" line="2368"/>
         <source>Extend rectangular selection up one page</source>
         <translation>矩形选区向上扩展一页</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2361"/>
+        <location filename="../ViewManager/ViewManager.py" line="2383"/>
         <source>Extend rectangular selection down one page</source>
         <translation>矩形选区向下扩展一页</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2379"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Duplicate current selection</source>
         <translation>重复当前选区</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2379"/>
+        <location filename="../ViewManager/ViewManager.py" line="2401"/>
         <source>Ctrl+Shift+D</source>
         <translation>Ctrl+Shift+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3352"/>
+        <location filename="../ViewManager/ViewManager.py" line="3376"/>
         <source>&amp;Search</source>
         <translation>搜索(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2786"/>
+        <location filename="../ViewManager/ViewManager.py" line="2808"/>
         <source>&amp;Edit</source>
         <translation>编辑(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2843"/>
+        <location filename="../ViewManager/ViewManager.py" line="2867"/>
         <source>Edit</source>
         <translation>编辑</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3447"/>
+        <location filename="../ViewManager/ViewManager.py" line="3471"/>
         <source>Search</source>
         <translation>搜索</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2875"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>&amp;Search...</source>
         <translation>搜索(&amp;S)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2875"/>
+        <location filename="../ViewManager/ViewManager.py" line="2899"/>
         <source>Ctrl+F</source>
         <comment>Search|Search</comment>
         <translation>Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2883"/>
+        <location filename="../ViewManager/ViewManager.py" line="2907"/>
         <source>Search for a text</source>
         <translation>搜索文本</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2885"/>
+        <location filename="../ViewManager/ViewManager.py" line="2909"/>
         <source>&lt;b&gt;Search&lt;/b&gt;&lt;p&gt;Search for some text in the current editor. A dialog is shown to enter the searchtext and options for the search.&lt;/p&gt;</source>
         <translation>&lt;b&gt;搜索&lt;/b&gt;&lt;p&gt;在当前编辑器中搜索某文本。显示一个对话框可以输入要搜索的文本和搜索选项。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Search next</source>
         <translation>搜索下一个</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>Search &amp;next</source>
         <translation>搜索下一个(&amp;N)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2895"/>
+        <location filename="../ViewManager/ViewManager.py" line="2919"/>
         <source>F3</source>
         <comment>Search|Search next</comment>
         <translation>F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2904"/>
+        <location filename="../ViewManager/ViewManager.py" line="2928"/>
         <source>Search next occurrence of text</source>
         <translation>搜索下一处文本</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2906"/>
+        <location filename="../ViewManager/ViewManager.py" line="2930"/>
         <source>&lt;b&gt;Search next&lt;/b&gt;&lt;p&gt;Search the next occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
         <translation>&lt;b&gt;搜索下一个&lt;/b&gt;&lt;p&gt;在当前编辑器中搜索某文本下一次出现的位置。仍然使用前面输入的搜索文本和选项。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Search previous</source>
         <translation>搜索上一个</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Search &amp;previous</source>
         <translation>搜索上一个(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2916"/>
+        <location filename="../ViewManager/ViewManager.py" line="2940"/>
         <source>Shift+F3</source>
         <comment>Search|Search previous</comment>
         <translation>Shift+F3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2924"/>
+        <location filename="../ViewManager/ViewManager.py" line="2948"/>
         <source>Search previous occurrence of text</source>
         <translation>搜索上一处文本</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2926"/>
+        <location filename="../ViewManager/ViewManager.py" line="2950"/>
         <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the current editor. The previously entered searchtext and options are reused.&lt;/p&gt;</source>
         <translation>&lt;b&gt;搜索上一个&lt;/b&gt;&lt;p&gt;在当前编辑器中搜索某文本上一次出现的位置。仍然使用前面输入的搜索文本和选项。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2936"/>
+        <location filename="../ViewManager/ViewManager.py" line="2960"/>
         <source>Clear search markers</source>
         <translation>清除搜索标记</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2936"/>
+        <location filename="../ViewManager/ViewManager.py" line="2960"/>
         <source>Ctrl+3</source>
         <comment>Search|Clear search markers</comment>
         <translation>Ctrl+3</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2944"/>
+        <location filename="../ViewManager/ViewManager.py" line="2968"/>
         <source>Clear all displayed search markers</source>
         <translation>清除所有显示的搜索标记</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2946"/>
+        <location filename="../ViewManager/ViewManager.py" line="2970"/>
         <source>&lt;b&gt;Clear search markers&lt;/b&gt;&lt;p&gt;Clear all displayed search markers.&lt;/p&gt;</source>
         <translation>&lt;b&gt;清除搜索标记&lt;/b&gt;&lt;p&gt;清除所有显示的搜索标记。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>Replace</source>
         <translation>替换</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>&amp;Replace...</source>
         <translation>替换(&amp;R)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3001"/>
+        <location filename="../ViewManager/ViewManager.py" line="3025"/>
         <source>Ctrl+R</source>
         <comment>Search|Replace</comment>
         <translation>Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3008"/>
+        <location filename="../ViewManager/ViewManager.py" line="3032"/>
         <source>Replace some text</source>
         <translation>替换某文本</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3010"/>
+        <location filename="../ViewManager/ViewManager.py" line="3034"/>
         <source>&lt;b&gt;Replace&lt;/b&gt;&lt;p&gt;Search for some text in the current editor and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and replace.&lt;/p&gt;</source>
         <translation>&lt;b&gt;替换&lt;/b&gt;&lt;p&gt;在当前编辑器搜索某文本并替换之。显示一个对话框可输入搜索文本、替换文本以及搜索替换的选项。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3387"/>
+        <location filename="../ViewManager/ViewManager.py" line="3411"/>
         <source>Quicksearch</source>
         <translation>快速搜索</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3088"/>
+        <location filename="../ViewManager/ViewManager.py" line="3112"/>
         <source>&amp;Quicksearch</source>
         <translation>快速搜索(&amp;Q)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3088"/>
+        <location filename="../ViewManager/ViewManager.py" line="3112"/>
         <source>Ctrl+Shift+K</source>
         <comment>Search|Quicksearch</comment>
         <translation>Ctrl+Shift+K</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3096"/>
+        <location filename="../ViewManager/ViewManager.py" line="3120"/>
         <source>Perform a quicksearch</source>
         <translation>执行快速搜索</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3098"/>
+        <location filename="../ViewManager/ViewManager.py" line="3122"/>
         <source>&lt;b&gt;Quicksearch&lt;/b&gt;&lt;p&gt;This activates the quicksearch function of the IDE by giving focus to the quicksearch entry field. If this field is already active and contains text, it searches for the next occurrence of this text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;快速搜索&lt;/b&gt;&lt;p&gt;通过给定快速搜索的条目区域激活 IDE 的快速搜索功能。如果该区域已激活并包含文本,则搜索该文本下一次出现的位置。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <source>Quicksearch backwards</source>
         <translation>向后快速搜索</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <source>Quicksearch &amp;backwards</source>
         <translation>向后快速搜索(&amp;b)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3109"/>
+        <location filename="../ViewManager/ViewManager.py" line="3133"/>
         <source>Ctrl+Shift+J</source>
         <comment>Search|Quicksearch backwards</comment>
         <translation>Ctrl+Shift+J</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3119"/>
+        <location filename="../ViewManager/ViewManager.py" line="3143"/>
         <source>Perform a quicksearch backwards</source>
         <translation>执行快速向后搜索</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3122"/>
+        <location filename="../ViewManager/ViewManager.py" line="3146"/>
         <source>&lt;b&gt;Quicksearch backwards&lt;/b&gt;&lt;p&gt;This searches the previous occurrence of the quicksearch text.&lt;/p&gt;</source>
         <translation>&lt;b&gt;向后快速搜索&lt;/b&gt;&lt;p&gt;搜索上一次出现快速搜索文本的位置。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Quicksearch extend</source>
         <translation>扩展快速搜索</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Quicksearch e&amp;xtend</source>
         <translation>扩展快速搜索(&amp;X)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3131"/>
+        <location filename="../ViewManager/ViewManager.py" line="3155"/>
         <source>Ctrl+Shift+H</source>
         <comment>Search|Quicksearch extend</comment>
         <translation>Ctrl+Shift+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3139"/>
+        <location filename="../ViewManager/ViewManager.py" line="3163"/>
         <source>Extend the quicksearch to the end of the current word</source>
         <translation>将快速搜索文本扩展到当前文字的末尾</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3142"/>
+        <location filename="../ViewManager/ViewManager.py" line="3166"/>
         <source>&lt;b&gt;Quicksearch extend&lt;/b&gt;&lt;p&gt;This extends the quicksearch text to the end of the word currently found.&lt;/p&gt;</source>
         <translation>&lt;b&gt;扩展快速搜索&lt;/b&gt;&lt;p&gt;将快速搜索文本扩展到当前找到文字的末尾。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3160"/>
+        <location filename="../ViewManager/ViewManager.py" line="3184"/>
         <source>Goto Line</source>
         <translation>跳转行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <location filename="../ViewManager/ViewManager.py" line="3176"/>
         <source>&amp;Goto Line...</source>
         <translation>跳转行(&amp;G)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3152"/>
+        <location filename="../ViewManager/ViewManager.py" line="3176"/>
         <source>Ctrl+G</source>
         <comment>Search|Goto Line</comment>
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3162"/>
+        <location filename="../ViewManager/ViewManager.py" line="3186"/>
         <source>&lt;b&gt;Goto Line&lt;/b&gt;&lt;p&gt;Go to a specific line of text in the current editor. A dialog is shown to enter the linenumber.&lt;/p&gt;</source>
         <translation>&lt;b&gt;跳转行&lt;/b&gt;&lt;p&gt;跳转到当前编辑器中文本的指定行。显示的对话框可输入行号。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3179"/>
+        <location filename="../ViewManager/ViewManager.py" line="3203"/>
         <source>Goto Brace</source>
         <translation>跳转括号</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <location filename="../ViewManager/ViewManager.py" line="3195"/>
         <source>Goto &amp;Brace</source>
         <translation>跳转括号(&amp;B)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3171"/>
+        <location filename="../ViewManager/ViewManager.py" line="3195"/>
         <source>Ctrl+L</source>
         <comment>Search|Goto Brace</comment>
         <translation>Ctrl+L</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3181"/>
+        <location filename="../ViewManager/ViewManager.py" line="3205"/>
         <source>&lt;b&gt;Goto Brace&lt;/b&gt;&lt;p&gt;Go to the matching brace in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;跳转括号&lt;/b&gt;&lt;p&gt;跳转到当前编辑器中匹配的括号处。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Search in Files</source>
         <translation>在文件中搜索</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Search in &amp;Files...</source>
         <translation>在文件中搜索(&amp;F)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3259"/>
+        <location filename="../ViewManager/ViewManager.py" line="3283"/>
         <source>Shift+Ctrl+F</source>
         <comment>Search|Search Files</comment>
         <translation>Shift+Ctrl+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3267"/>
+        <location filename="../ViewManager/ViewManager.py" line="3291"/>
         <source>Search for a text in files</source>
         <translation>在文件中搜索文本</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3269"/>
+        <location filename="../ViewManager/ViewManager.py" line="3293"/>
         <source>&lt;b&gt;Search in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;在文件中搜索&lt;/b&gt;&lt;p&gt;在项目或目录树的文件中搜索某文本。显示的对话框中可输入搜索文本、搜索和显示结果的选项。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Replace in Files</source>
         <translation>在文件中替换</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Replace in F&amp;iles...</source>
         <translation>在文件中替换(&amp;I)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3279"/>
+        <location filename="../ViewManager/ViewManager.py" line="3303"/>
         <source>Shift+Ctrl+R</source>
         <comment>Search|Replace in Files</comment>
         <translation>Shift+Ctrl+R</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3286"/>
+        <location filename="../ViewManager/ViewManager.py" line="3310"/>
         <source>Search for a text in files and replace it</source>
         <translation>在文件中搜索文本并替换之</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3288"/>
+        <location filename="../ViewManager/ViewManager.py" line="3312"/>
         <source>&lt;b&gt;Replace in Files&lt;/b&gt;&lt;p&gt;Search for some text in the files of a directory tree or the project and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation>&lt;b&gt;在文件中替换&lt;/b&gt;&lt;p&gt;在项目或目录树的文件中搜索某文本并替换之。显示的对话框可输入搜索文本、替换文本以及搜索和显示结果的选项。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3406"/>
+        <location filename="../ViewManager/ViewManager.py" line="3430"/>
         <source>&lt;p&gt;Enter the searchtext directly into this field. The search will be performed case insensitive. The quicksearch function is activated upon activation of the quicksearch next action (default key Ctrl+Shift+K), if this entry field does not have the input focus. Otherwise it searches for the next occurrence of the text entered. The quicksearch backwards action (default key Ctrl+Shift+J) searches backward. Activating the &apos;quicksearch extend&apos; action (default key Ctrl+Shift+H) extends the current searchtext to the end of the currently found word. The quicksearch can be ended by pressing the Return key while the quicksearch entry has the the input focus.&lt;/p&gt;</source>
         <translation>&lt;p&gt;将搜索文本直接输入到该区域。搜索区别大小写。如果该输入区域没有输入焦点,则快速搜索功能在“快速搜索下一个”动作(默认键:Ctrl+Shift+K)激活时被激活,否则将搜索输入文本下一次出现的位置。“向后快速搜索”动作(默认键:Ctrl+Shift+J)向后搜索。启动“扩展快速搜索”动作(默认键:Ctrl+Shift+H)将扩展当前搜索文本到当前找到文字的结尾。可在快速搜索条目具有输入焦点时按下回车键以开启快速搜索功能。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3433"/>
+        <location filename="../ViewManager/ViewManager.py" line="3457"/>
         <source>Quicksearch Textedit</source>
         <translation>快速搜索文本编辑</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom in</source>
         <translation>放大</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom &amp;in</source>
         <translation>放大(&amp;I)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Ctrl++</source>
         <comment>View|Zoom in</comment>
         <translation>Ctrl++</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3496"/>
+        <location filename="../ViewManager/ViewManager.py" line="3520"/>
         <source>Zoom in on the text</source>
         <translation>放大显示文本</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3498"/>
+        <location filename="../ViewManager/ViewManager.py" line="3522"/>
         <source>&lt;b&gt;Zoom in&lt;/b&gt;&lt;p&gt;Zoom in on the text. This makes the text bigger.&lt;/p&gt;</source>
         <translation>&lt;b&gt;放大&lt;/b&gt;&lt;p&gt;放大显示文本。将使文本变大。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom out</source>
         <translation>缩小</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom &amp;out</source>
         <translation>缩小(&amp;O)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Ctrl+-</source>
         <comment>View|Zoom out</comment>
         <translation>Ctrl+-</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3515"/>
+        <location filename="../ViewManager/ViewManager.py" line="3539"/>
         <source>Zoom out on the text</source>
         <translation>缩小显示文本</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3517"/>
+        <location filename="../ViewManager/ViewManager.py" line="3541"/>
         <source>&lt;b&gt;Zoom out&lt;/b&gt;&lt;p&gt;Zoom out on the text. This makes the text smaller.&lt;/p&gt;</source>
         <translation>&lt;b&gt;缩小&lt;/b&gt;&lt;p&gt;缩小显示文本。将使文本变小。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>Zoom</source>
         <translation>缩放</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>&amp;Zoom</source>
         <translation>缩放(&amp;Z)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3544"/>
+        <location filename="../ViewManager/ViewManager.py" line="3568"/>
         <source>Ctrl+#</source>
         <comment>View|Zoom</comment>
         <translation>Ctrl+#</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3552"/>
+        <location filename="../ViewManager/ViewManager.py" line="3576"/>
         <source>Zoom the text</source>
         <translation>缩放文本</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3554"/>
+        <location filename="../ViewManager/ViewManager.py" line="3578"/>
         <source>&lt;b&gt;Zoom&lt;/b&gt;&lt;p&gt;Zoom the text. This opens a dialog where the desired size can be entered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;缩放&lt;/b&gt;&lt;p&gt;缩放文本。打开一个对话框以输入所需大小。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3567"/>
+        <location filename="../ViewManager/ViewManager.py" line="3591"/>
         <source>Toggle all folds</source>
         <translation>开关所有折叠</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3563"/>
+        <location filename="../ViewManager/ViewManager.py" line="3587"/>
         <source>&amp;Toggle all folds</source>
         <translation type="unfinished">开关所有折叠(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3569"/>
+        <location filename="../ViewManager/ViewManager.py" line="3593"/>
         <source>&lt;b&gt;Toggle all folds&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;开关所有折叠&lt;/b&gt;&lt;p&gt;打开或关闭当前编辑器的所有折叠。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3583"/>
+        <location filename="../ViewManager/ViewManager.py" line="3607"/>
         <source>Toggle all folds (including children)</source>
         <translation>开关所有折叠(包含子项)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3577"/>
-        <source>Toggle all &amp;folds (including children)</source>
-        <translation>开关所有折叠(&amp;F)(包含子项)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3585"/>
-        <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;开关所有折叠(包含子项)&lt;/b&gt;&lt;p&gt;打开或关闭当前编辑器中的所有折叠,包括子折叠。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3599"/>
-        <source>Toggle current fold</source>
-        <translation>开关当前折叠</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3595"/>
-        <source>Toggle &amp;current fold</source>
-        <translation>开关当前折叠(&amp;C)</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3601"/>
+        <source>Toggle all &amp;folds (including children)</source>
+        <translation>开关所有折叠(&amp;F)(包含子项)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3609"/>
+        <source>&lt;b&gt;Toggle all folds (including children)&lt;/b&gt;&lt;p&gt;Toggle all folds of the current editor including all children.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;开关所有折叠(包含子项)&lt;/b&gt;&lt;p&gt;打开或关闭当前编辑器中的所有折叠,包括子折叠。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3623"/>
+        <source>Toggle current fold</source>
+        <translation>开关当前折叠</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3619"/>
+        <source>Toggle &amp;current fold</source>
+        <translation>开关当前折叠(&amp;C)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3625"/>
         <source>&lt;b&gt;Toggle current fold&lt;/b&gt;&lt;p&gt;Toggle the folds of the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;开关当前折叠&lt;/b&gt;&lt;p&gt;打开或关闭当前编辑器的当前行中的折叠。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3631"/>
+        <location filename="../ViewManager/ViewManager.py" line="3655"/>
         <source>Remove all highlights</source>
         <translation>取消所有高亮</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3633"/>
+        <location filename="../ViewManager/ViewManager.py" line="3657"/>
         <source>&lt;b&gt;Remove all highlights&lt;/b&gt;&lt;p&gt;Remove the highlights of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;取消所有高亮&lt;/b&gt;&lt;p&gt;取消所有编辑器中的高亮。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3703"/>
         <source>Split view</source>
         <translation>拆分视图</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3679"/>
+        <location filename="../ViewManager/ViewManager.py" line="3703"/>
         <source>&amp;Split view</source>
         <translation>拆分视图(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3684"/>
+        <location filename="../ViewManager/ViewManager.py" line="3708"/>
         <source>Add a split to the view</source>
         <translation>对视图进行拆分</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3686"/>
+        <location filename="../ViewManager/ViewManager.py" line="3710"/>
         <source>&lt;b&gt;Split view&lt;/b&gt;&lt;p&gt;Add a split to the view.&lt;/p&gt;</source>
         <translation>&lt;b&gt;拆分视图&lt;/b&gt;&lt;p&gt;对视图进行拆分。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3694"/>
+        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>Arrange horizontally</source>
         <translation>水平排列</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3694"/>
+        <location filename="../ViewManager/ViewManager.py" line="3718"/>
         <source>Arrange &amp;horizontally</source>
         <translation>水平排列(&amp;H)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3698"/>
+        <location filename="../ViewManager/ViewManager.py" line="3722"/>
         <source>Arrange the splitted views horizontally</source>
         <translation>将拆分的视图进行水平排列</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3700"/>
-        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;水平排列&lt;/b&gt;&lt;p&gt;将拆分的视图进行水平排列。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3709"/>
-        <source>Remove split</source>
-        <translation>移除拆分</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3709"/>
-        <source>&amp;Remove split</source>
-        <translation>移除拆分(&amp;R)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3714"/>
-        <source>Remove the current split</source>
-        <translation>移除当前拆分</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3716"/>
-        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;移除拆分&lt;/b&gt;&lt;p&gt;移除当前拆分。&lt;/p&gt;</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3724"/>
+        <source>&lt;b&gt;Arrange horizontally&lt;/b&gt;&lt;p&gt;Arrange the splitted views horizontally.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;水平排列&lt;/b&gt;&lt;p&gt;将拆分的视图进行水平排列。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3733"/>
+        <source>Remove split</source>
+        <translation>移除拆分</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3733"/>
+        <source>&amp;Remove split</source>
+        <translation>移除拆分(&amp;R)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3738"/>
+        <source>Remove the current split</source>
+        <translation>移除当前拆分</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3740"/>
+        <source>&lt;b&gt;Remove split&lt;/b&gt;&lt;p&gt;Remove the current split.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;移除拆分&lt;/b&gt;&lt;p&gt;移除当前拆分。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
         <source>Next split</source>
         <translation>下一个拆分</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3724"/>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
         <source>&amp;Next split</source>
         <translation>下一个拆分(&amp;N)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3724"/>
+        <location filename="../ViewManager/ViewManager.py" line="3748"/>
         <source>Ctrl+Alt+N</source>
         <comment>View|Next split</comment>
         <translation>Ctrl+Alt+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3731"/>
+        <location filename="../ViewManager/ViewManager.py" line="3755"/>
         <source>Move to the next split</source>
         <translation>移动到下一个拆分中</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3733"/>
+        <location filename="../ViewManager/ViewManager.py" line="3757"/>
         <source>&lt;b&gt;Next split&lt;/b&gt;&lt;p&gt;Move to the next split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;下一个拆分&lt;/b&gt;&lt;p&gt;移动到下一个拆分中。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>Previous split</source>
         <translation>上一个拆分</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>&amp;Previous split</source>
         <translation>上一个拆分(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3741"/>
+        <location filename="../ViewManager/ViewManager.py" line="3765"/>
         <source>Ctrl+Alt+P</source>
         <comment>View|Previous split</comment>
         <translation>Ctrl+Alt+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3747"/>
+        <location filename="../ViewManager/ViewManager.py" line="3771"/>
         <source>Move to the previous split</source>
         <translation>移动到上一个拆分中</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3749"/>
+        <location filename="../ViewManager/ViewManager.py" line="3773"/>
         <source>&lt;b&gt;Previous split&lt;/b&gt;&lt;p&gt;Move to the previous split.&lt;/p&gt;</source>
         <translation>&lt;b&gt;上一个拆分&lt;/b&gt;&lt;p&gt;移动到上一个拆分中。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3833"/>
+        <location filename="../ViewManager/ViewManager.py" line="3857"/>
         <source>&amp;View</source>
         <translation>视图(&amp;V)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3870"/>
+        <location filename="../ViewManager/ViewManager.py" line="3894"/>
         <source>View</source>
         <translation>视图</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3906"/>
-        <source>Start Macro Recording</source>
-        <translation>开始宏录制</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3900"/>
-        <source>S&amp;tart Macro Recording</source>
-        <translation>开始宏录制(&amp;T)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3908"/>
-        <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;开始宏录制&lt;/b&gt;&lt;p&gt;开始将编辑器命令录制到一个新宏中。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3920"/>
-        <source>Stop Macro Recording</source>
-        <translation>中止宏录制</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3916"/>
-        <source>Sto&amp;p Macro Recording</source>
-        <translation>中止宏录制(&amp;P)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3922"/>
-        <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;中止宏录制&lt;/b&gt;&lt;p&gt;中止将编辑器命令录制到一个新宏中。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3934"/>
-        <source>Run Macro</source>
-        <translation>运行宏</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3930"/>
-        <source>&amp;Run Macro</source>
-        <translation>运行宏(&amp;R)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3936"/>
-        <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;运行宏&lt;/b&gt;&lt;p&gt;运行一个已经录制好的编辑器宏。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3948"/>
-        <source>Delete Macro</source>
-        <translation>删除宏</translation>
+        <source>Start Macro Recording</source>
+        <translation>开始宏录制</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3924"/>
+        <source>S&amp;tart Macro Recording</source>
+        <translation>开始宏录制(&amp;T)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3932"/>
+        <source>&lt;b&gt;Start Macro Recording&lt;/b&gt;&lt;p&gt;Start recording editor commands into a new macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;开始宏录制&lt;/b&gt;&lt;p&gt;开始将编辑器命令录制到一个新宏中。&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3944"/>
-        <source>&amp;Delete Macro</source>
-        <translation>删除宏(&amp;D)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3950"/>
-        <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;删除宏&lt;/b&gt;&lt;p&gt;删除一个已经录制好的编辑器宏。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3962"/>
-        <source>Load Macro</source>
-        <translation>载入宏</translation>
+        <source>Stop Macro Recording</source>
+        <translation>中止宏录制</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3940"/>
+        <source>Sto&amp;p Macro Recording</source>
+        <translation>中止宏录制(&amp;P)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3946"/>
+        <source>&lt;b&gt;Stop Macro Recording&lt;/b&gt;&lt;p&gt;Stop recording editor commands into a new macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;中止宏录制&lt;/b&gt;&lt;p&gt;中止将编辑器命令录制到一个新宏中。&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3958"/>
-        <source>&amp;Load Macro</source>
-        <translation>载入宏(&amp;L)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3964"/>
-        <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;载入宏&lt;/b&gt;&lt;p&gt;从文件中载入一个编辑器宏。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3976"/>
-        <source>Save Macro</source>
-        <translation>保存宏</translation>
+        <source>Run Macro</source>
+        <translation>运行宏</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3954"/>
+        <source>&amp;Run Macro</source>
+        <translation>运行宏(&amp;R)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3960"/>
+        <source>&lt;b&gt;Run Macro&lt;/b&gt;&lt;p&gt;Run a previously recorded editor macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;运行宏&lt;/b&gt;&lt;p&gt;运行一个已经录制好的编辑器宏。&lt;/p&gt;</translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3972"/>
+        <source>Delete Macro</source>
+        <translation>删除宏</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3968"/>
+        <source>&amp;Delete Macro</source>
+        <translation>删除宏(&amp;D)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3974"/>
+        <source>&lt;b&gt;Delete Macro&lt;/b&gt;&lt;p&gt;Delete a previously recorded editor macro.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;删除宏&lt;/b&gt;&lt;p&gt;删除一个已经录制好的编辑器宏。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3986"/>
+        <source>Load Macro</source>
+        <translation>载入宏</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3982"/>
+        <source>&amp;Load Macro</source>
+        <translation>载入宏(&amp;L)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3988"/>
+        <source>&lt;b&gt;Load Macro&lt;/b&gt;&lt;p&gt;Load an editor macro from a file.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;载入宏&lt;/b&gt;&lt;p&gt;从文件中载入一个编辑器宏。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4000"/>
+        <source>Save Macro</source>
+        <translation>保存宏</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3996"/>
         <source>&amp;Save Macro</source>
         <translation>保存宏(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3978"/>
+        <location filename="../ViewManager/ViewManager.py" line="4002"/>
         <source>&lt;b&gt;Save Macro&lt;/b&gt;&lt;p&gt;Save a previously recorded editor macro to a file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;保存宏&lt;/b&gt;&lt;p&gt;将前面录制好的编辑器宏保存到一个文件中。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3994"/>
+        <location filename="../ViewManager/ViewManager.py" line="4018"/>
         <source>&amp;Macros</source>
         <translation>宏(&amp;M)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4020"/>
+        <location filename="../ViewManager/ViewManager.py" line="4044"/>
         <source>Toggle Bookmark</source>
         <translation>切换书签</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
         <source>&amp;Toggle Bookmark</source>
         <translation>切换书签(&amp;T)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4012"/>
+        <location filename="../ViewManager/ViewManager.py" line="4036"/>
         <source>Alt+Ctrl+T</source>
         <comment>Bookmark|Toggle</comment>
         <translation>Alt+Ctrl+T</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4022"/>
+        <location filename="../ViewManager/ViewManager.py" line="4046"/>
         <source>&lt;b&gt;Toggle Bookmark&lt;/b&gt;&lt;p&gt;Toggle a bookmark at the current line of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;切换书签&lt;/b&gt;&lt;p&gt;在当前编辑器的当前行打开或关闭书签。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4039"/>
+        <location filename="../ViewManager/ViewManager.py" line="4063"/>
         <source>Next Bookmark</source>
         <translation>下一个书签</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>&amp;Next Bookmark</source>
         <translation>下一个书签(&amp;N)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4031"/>
+        <location filename="../ViewManager/ViewManager.py" line="4055"/>
         <source>Ctrl+PgDown</source>
         <comment>Bookmark|Next</comment>
         <translation>Ctrl+PgDown</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4041"/>
+        <location filename="../ViewManager/ViewManager.py" line="4065"/>
         <source>&lt;b&gt;Next Bookmark&lt;/b&gt;&lt;p&gt;Go to next bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;下一个书签&lt;/b&gt;&lt;p&gt;跳转到当前编辑器的下一个书签处。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4057"/>
+        <location filename="../ViewManager/ViewManager.py" line="4081"/>
         <source>Previous Bookmark</source>
         <translation>上一个书签</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <location filename="../ViewManager/ViewManager.py" line="4073"/>
         <source>&amp;Previous Bookmark</source>
         <translation>上一个书签(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4049"/>
+        <location filename="../ViewManager/ViewManager.py" line="4073"/>
         <source>Ctrl+PgUp</source>
         <comment>Bookmark|Previous</comment>
         <translation>Ctrl+PgUp</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4059"/>
+        <location filename="../ViewManager/ViewManager.py" line="4083"/>
         <source>&lt;b&gt;Previous Bookmark&lt;/b&gt;&lt;p&gt;Go to previous bookmark of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;上一个书签&lt;/b&gt;&lt;p&gt;跳转到当前编辑器的上一个书签处。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4074"/>
+        <location filename="../ViewManager/ViewManager.py" line="4098"/>
         <source>Clear Bookmarks</source>
         <translation>清除书签</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4091"/>
         <source>&amp;Clear Bookmarks</source>
         <translation>清除书签(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4067"/>
+        <location filename="../ViewManager/ViewManager.py" line="4091"/>
         <source>Alt+Ctrl+C</source>
         <comment>Bookmark|Clear</comment>
         <translation>Alt+Ctrl+C</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4076"/>
+        <location filename="../ViewManager/ViewManager.py" line="4100"/>
         <source>&lt;b&gt;Clear Bookmarks&lt;/b&gt;&lt;p&gt;Clear bookmarks of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;清除书签&lt;/b&gt;&lt;p&gt;清除所有编辑器的书签。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4090"/>
+        <location filename="../ViewManager/ViewManager.py" line="4114"/>
         <source>Goto Syntax Error</source>
         <translation>转到语法错误处</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4084"/>
+        <location filename="../ViewManager/ViewManager.py" line="4108"/>
         <source>&amp;Goto Syntax Error</source>
         <translation>转到语法错误处(&amp;G)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4092"/>
+        <location filename="../ViewManager/ViewManager.py" line="4116"/>
         <source>&lt;b&gt;Goto Syntax Error&lt;/b&gt;&lt;p&gt;Go to next syntax error of the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;转到语法错误处&lt;/b&gt;&lt;p&gt;跳转到当前编辑器的下一个语法错误处。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4105"/>
+        <location filename="../ViewManager/ViewManager.py" line="4129"/>
         <source>Clear Syntax Errors</source>
         <translation>清除语法错误</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4100"/>
+        <location filename="../ViewManager/ViewManager.py" line="4124"/>
         <source>Clear &amp;Syntax Errors</source>
         <translation>清除语法错误(&amp;S)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4107"/>
+        <location filename="../ViewManager/ViewManager.py" line="4131"/>
         <source>&lt;b&gt;Clear Syntax Errors&lt;/b&gt;&lt;p&gt;Clear syntax errors of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;清除语法错误&lt;/b&gt;&lt;p&gt;清除所有编辑器的语法错误。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4175"/>
+        <location filename="../ViewManager/ViewManager.py" line="4199"/>
         <source>Next uncovered line</source>
         <translation>下一个未覆盖行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4169"/>
+        <location filename="../ViewManager/ViewManager.py" line="4193"/>
         <source>&amp;Next uncovered line</source>
         <translation>下一个未覆盖行(&amp;N)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4177"/>
+        <location filename="../ViewManager/ViewManager.py" line="4201"/>
         <source>&lt;b&gt;Next uncovered line&lt;/b&gt;&lt;p&gt;Go to next line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;下一个未覆盖行&lt;/b&gt;&lt;p&gt;跳转到下一个当前编辑器标记为不覆盖的行。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4194"/>
+        <location filename="../ViewManager/ViewManager.py" line="4218"/>
         <source>Previous uncovered line</source>
         <translation>上一个未覆盖行</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4186"/>
+        <location filename="../ViewManager/ViewManager.py" line="4210"/>
         <source>&amp;Previous uncovered line</source>
         <translation>上一个未覆盖行(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4196"/>
+        <location filename="../ViewManager/ViewManager.py" line="4220"/>
         <source>&lt;b&gt;Previous uncovered line&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor marked as not covered.&lt;/p&gt;</source>
         <translation>&lt;b&gt;上一个未覆盖行&lt;/b&gt;&lt;p&gt;跳转到上一个编辑器标记为不覆盖的行。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4212"/>
+        <location filename="../ViewManager/ViewManager.py" line="4236"/>
         <source>Next Task</source>
         <translation>下一个任务</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4206"/>
+        <location filename="../ViewManager/ViewManager.py" line="4230"/>
         <source>&amp;Next Task</source>
         <translation>下一个任务(&amp;N)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4214"/>
+        <location filename="../ViewManager/ViewManager.py" line="4238"/>
         <source>&lt;b&gt;Next Task&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;下一个任务&lt;/b&gt;&lt;p&gt;跳转到下一个包含任务的当前编辑器的行。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4229"/>
+        <location filename="../ViewManager/ViewManager.py" line="4253"/>
         <source>Previous Task</source>
         <translation>上一个任务</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4222"/>
+        <location filename="../ViewManager/ViewManager.py" line="4246"/>
         <source>&amp;Previous Task</source>
         <translation>上一个任务(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4231"/>
+        <location filename="../ViewManager/ViewManager.py" line="4255"/>
         <source>&lt;b&gt;Previous Task&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a task.&lt;/p&gt;</source>
         <translation>&lt;b&gt;上一个任务&lt;/b&gt;&lt;p&gt;跳转到上一个包含任务的当前编辑器的行。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4285"/>
+        <location filename="../ViewManager/ViewManager.py" line="4309"/>
         <source>&amp;Bookmarks</source>
         <translation>书签(&amp;B)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4331"/>
+        <location filename="../ViewManager/ViewManager.py" line="4355"/>
         <source>Bookmarks</source>
         <translation>书签</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Shift+F7</source>
         <comment>Spelling|Spell Check</comment>
         <translation>Shift+F7</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4373"/>
+        <location filename="../ViewManager/ViewManager.py" line="4397"/>
         <source>Perform spell check of current editor</source>
         <translation>对当前编辑器进行拼写检查</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4383"/>
+        <location filename="../ViewManager/ViewManager.py" line="4407"/>
         <source>Automatic spell checking</source>
         <translation>自动拼写检查</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4383"/>
+        <location filename="../ViewManager/ViewManager.py" line="4407"/>
         <source>&amp;Automatic spell checking</source>
         <translation>自动拼写检查(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4391"/>
+        <location filename="../ViewManager/ViewManager.py" line="4415"/>
         <source>(De-)Activate automatic spell checking</source>
         <translation>(不)激活自动拼写检查</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4393"/>
+        <location filename="../ViewManager/ViewManager.py" line="4417"/>
         <source>&lt;b&gt;Automatic spell checking&lt;/b&gt;&lt;p&gt;Activate or deactivate the automatic spell checking function of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;自动拼写检查&lt;/b&gt;&lt;p&gt;激活或不激活所有编辑器的自动拼写检查功能。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4460"/>
+        <location filename="../ViewManager/ViewManager.py" line="4484"/>
         <source>Spelling</source>
         <translation>拼写法</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4483"/>
+        <location filename="../ViewManager/ViewManager.py" line="4507"/>
         <source>Open files</source>
         <translation>打开多个文件</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4527"/>
+        <location filename="../ViewManager/ViewManager.py" line="4551"/>
         <source>File Modified</source>
         <translation>文件已改变</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5371"/>
+        <location filename="../ViewManager/ViewManager.py" line="5395"/>
         <source>&amp;Clear</source>
         <translation>清除(&amp;C)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5365"/>
+        <location filename="../ViewManager/ViewManager.py" line="5389"/>
         <source>&amp;Add</source>
         <translation>添加(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="5368"/>
+        <location filename="../ViewManager/ViewManager.py" line="5392"/>
         <source>&amp;Edit...</source>
         <translation>编辑(&amp;E)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4527"/>
+        <location filename="../ViewManager/ViewManager.py" line="4551"/>
         <source>&lt;p&gt;The file &lt;b&gt;{0}&lt;/b&gt; has unsaved changes.&lt;/p&gt;</source>
         <translation>&lt;p&gt;文件 &lt;b&gt;{0}&lt;/b&gt; 有未保存的更改。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4926"/>
+        <location filename="../ViewManager/ViewManager.py" line="4950"/>
         <source>Line: {0:5}</source>
         <translation>行:{0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4932"/>
+        <location filename="../ViewManager/ViewManager.py" line="4956"/>
         <source>Pos: {0:5}</source>
         <translation>列:{0:5}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4122"/>
+        <location filename="../ViewManager/ViewManager.py" line="4146"/>
         <source>Next warning message</source>
         <translation>下一个警告消息</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4116"/>
+        <location filename="../ViewManager/ViewManager.py" line="4140"/>
         <source>&amp;Next warning message</source>
         <translation>下一个警告消息(&amp;N)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4141"/>
+        <location filename="../ViewManager/ViewManager.py" line="4165"/>
         <source>Previous warning message</source>
         <translation>上一个警告消息</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4133"/>
+        <location filename="../ViewManager/ViewManager.py" line="4157"/>
         <source>&amp;Previous warning message</source>
         <translation>上一个警告消息(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4159"/>
+        <location filename="../ViewManager/ViewManager.py" line="4183"/>
         <source>Clear Warning Messages</source>
         <translation>清空警告消息</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4152"/>
+        <location filename="../ViewManager/ViewManager.py" line="4176"/>
         <source>Clear &amp;Warning Messages</source>
         <translation>清空警告消息(&amp;W)</translation>
     </message>
@@ -85861,425 +85856,425 @@
         <translation>&lt;b&gt;连接行&lt;/b&gt;&lt;p&gt;连接当前行和下面的行。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3200"/>
+        <location filename="../ViewManager/ViewManager.py" line="3224"/>
         <source>Goto Last Edit Location</source>
         <translation>跳转至上一次编辑位置</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3213"/>
         <source>Goto Last &amp;Edit Location</source>
         <translation>跳转至上一次编辑位置(&amp;E)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3189"/>
+        <location filename="../ViewManager/ViewManager.py" line="3213"/>
         <source>Ctrl+Shift+G</source>
         <comment>Search|Goto Last Edit Location</comment>
         <translation>Ctrl+Shift+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3203"/>
+        <location filename="../ViewManager/ViewManager.py" line="3227"/>
         <source>&lt;b&gt;Goto Last Edit Location&lt;/b&gt;&lt;p&gt;Go to the location of the last edit in the current editor.&lt;/p&gt;</source>
         <translation>&lt;b&gt;跳转至上一次编辑位置&lt;/b&gt;前往当前编辑器上一次编辑的位置。&lt;/b&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3212"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Goto Previous Method or Class</source>
         <translation>跳转至上一个方法或类</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3212"/>
+        <location filename="../ViewManager/ViewManager.py" line="3236"/>
         <source>Ctrl+Shift+Up</source>
         <comment>Search|Goto Previous Method or Class</comment>
         <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3222"/>
-        <source>Go to the previous method or class definition</source>
-        <translation>跳转之上一个方法或类的定义</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3226"/>
-        <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;跳转至上一个方法或类&lt;/b&gt;&lt;p&gt;跳转至上一个方法或类的定义所在行并高亮其名称。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3236"/>
-        <source>Goto Next Method or Class</source>
-        <translation>跳转至下一个方法或类</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3236"/>
-        <source>Ctrl+Shift+Down</source>
-        <comment>Search|Goto Next Method or Class</comment>
-        <translation>Ctrl+Shift+Down</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3246"/>
+        <source>Go to the previous method or class definition</source>
+        <translation>跳转之上一个方法或类的定义</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3250"/>
+        <source>&lt;b&gt;Goto Previous Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the previous method or class definition and highlights the name.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;跳转至上一个方法或类&lt;/b&gt;&lt;p&gt;跳转至上一个方法或类的定义所在行并高亮其名称。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3260"/>
+        <source>Goto Next Method or Class</source>
+        <translation>跳转至下一个方法或类</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3260"/>
+        <source>Ctrl+Shift+Down</source>
+        <comment>Search|Goto Next Method or Class</comment>
+        <translation>Ctrl+Shift+Down</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3270"/>
         <source>Go to the next method or class definition</source>
         <translation>跳转之下一个方法或类的定义</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3248"/>
+        <location filename="../ViewManager/ViewManager.py" line="3272"/>
         <source>&lt;b&gt;Goto Next Method or Class&lt;/b&gt;&lt;p&gt;Goes to the line of the next method or class definition and highlights the name.&lt;/p&gt;</source>
         <translation>&lt;b&gt;跳转至下一个方法或类&lt;/b&gt;&lt;p&gt;跳转至下一个方法或类的定义所在行并高亮其名称。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3757"/>
+        <location filename="../ViewManager/ViewManager.py" line="3781"/>
         <source>Preview</source>
         <translation>预览</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3762"/>
+        <location filename="../ViewManager/ViewManager.py" line="3786"/>
         <source>Preview the current file in the web browser</source>
         <translation>在网页浏览器中预览当前文件</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3764"/>
+        <location filename="../ViewManager/ViewManager.py" line="3788"/>
         <source>&lt;b&gt;Preview&lt;/b&gt;&lt;p&gt;This opens the web browser with a preview of the current file.&lt;/p&gt;</source>
         <translation>&lt;b&gt;预览&lt;/b&gt;&lt;p&gt;在网页浏览器中打开当前文件,显示预览。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1489"/>
+        <location filename="../ViewManager/ViewManager.py" line="1511"/>
         <source>Meta+B</source>
         <translation>Meta+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1502"/>
+        <location filename="../ViewManager/ViewManager.py" line="1524"/>
         <source>Meta+F</source>
         <translation>Meta+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1514"/>
+        <location filename="../ViewManager/ViewManager.py" line="1536"/>
         <source>Meta+P</source>
         <translation>Meta+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1526"/>
+        <location filename="../ViewManager/ViewManager.py" line="1548"/>
         <source>Meta+N</source>
         <translation>Meta+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1587"/>
+        <location filename="../ViewManager/ViewManager.py" line="1609"/>
         <source>Move to first visible character in document line</source>
         <translation>移动至文档行的第一个可见字符</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1603"/>
+        <location filename="../ViewManager/ViewManager.py" line="1625"/>
         <source>Move to start of display line</source>
         <translation>移动至所显示行的起始位置</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1620"/>
+        <location filename="../ViewManager/ViewManager.py" line="1642"/>
         <source>Move to end of document line</source>
         <translation>移动至文档行的末尾</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1628"/>
+        <location filename="../ViewManager/ViewManager.py" line="1650"/>
         <source>Meta+E</source>
         <translation>Meta+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1696"/>
+        <location filename="../ViewManager/ViewManager.py" line="1718"/>
         <source>Meta+V</source>
         <translation>Meta+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1702"/>
+        <location filename="../ViewManager/ViewManager.py" line="1724"/>
         <source>Move to start of document</source>
         <translation>移动至文档的起始位置</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1719"/>
+        <location filename="../ViewManager/ViewManager.py" line="1741"/>
         <source>Move to end of document</source>
         <translation>移动至文档的末尾</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1764"/>
+        <location filename="../ViewManager/ViewManager.py" line="1786"/>
         <source>Meta+Shift+B</source>
         <translation>Meta+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1779"/>
+        <location filename="../ViewManager/ViewManager.py" line="1801"/>
         <source>Meta+Shift+F</source>
         <translation>Meta+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1794"/>
+        <location filename="../ViewManager/ViewManager.py" line="1816"/>
         <source>Meta+Shift+P</source>
         <translation>Meta+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1809"/>
+        <location filename="../ViewManager/ViewManager.py" line="1831"/>
         <source>Meta+Shift+N</source>
         <translation>Meta+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1877"/>
+        <location filename="../ViewManager/ViewManager.py" line="1899"/>
         <source>Extend selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1895"/>
+        <location filename="../ViewManager/ViewManager.py" line="1917"/>
         <source>Extend selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1903"/>
+        <location filename="../ViewManager/ViewManager.py" line="1925"/>
         <source>Meta+Shift+E</source>
         <translation>Meta+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1960"/>
+        <location filename="../ViewManager/ViewManager.py" line="1982"/>
         <source>Meta+Shift+V</source>
         <translation>Meta+Shift+V</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1966"/>
+        <location filename="../ViewManager/ViewManager.py" line="1988"/>
         <source>Extend selection to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1974"/>
+        <location filename="../ViewManager/ViewManager.py" line="1996"/>
         <source>Ctrl+Shift+Up</source>
         <translation>Ctrl+Shift+Up</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1983"/>
+        <location filename="../ViewManager/ViewManager.py" line="2005"/>
         <source>Extend selection to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="1991"/>
+        <location filename="../ViewManager/ViewManager.py" line="2013"/>
         <source>Ctrl+Shift+Down</source>
         <translation>Ctrl+Shift+Down</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2009"/>
+        <location filename="../ViewManager/ViewManager.py" line="2031"/>
         <source>Meta+H</source>
         <translation>Meta+H</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2018"/>
+        <location filename="../ViewManager/ViewManager.py" line="2040"/>
         <source>Delete previous character if not at start of line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2039"/>
+        <location filename="../ViewManager/ViewManager.py" line="2061"/>
         <source>Meta+D</source>
         <translation>Meta+D</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2083"/>
+        <location filename="../ViewManager/ViewManager.py" line="2105"/>
         <source>Meta+K</source>
         <translation>Meta+K</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2192"/>
+        <location filename="../ViewManager/ViewManager.py" line="2214"/>
         <source>Move to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2209"/>
+        <location filename="../ViewManager/ViewManager.py" line="2231"/>
         <source>Extend selection to end of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2251"/>
+        <location filename="../ViewManager/ViewManager.py" line="2273"/>
         <source>Meta+Alt+Shift+N</source>
         <translation>Meta+Alt+Shift+N</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2266"/>
+        <location filename="../ViewManager/ViewManager.py" line="2288"/>
         <source>Meta+Alt+Shift+P</source>
         <translation>Meta+Alt+Shift+P</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2284"/>
+        <location filename="../ViewManager/ViewManager.py" line="2306"/>
         <source>Meta+Alt+Shift+B</source>
         <translation>Meta+Alt+Shift+B</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2302"/>
+        <location filename="../ViewManager/ViewManager.py" line="2324"/>
         <source>Meta+Alt+Shift+F</source>
         <translation>Meta+Alt+Shift+F</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2308"/>
+        <location filename="../ViewManager/ViewManager.py" line="2330"/>
         <source>Extend rectangular selection to first visible character in document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2327"/>
+        <location filename="../ViewManager/ViewManager.py" line="2349"/>
         <source>Extend rectangular selection to end of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2337"/>
+        <location filename="../ViewManager/ViewManager.py" line="2359"/>
         <source>Meta+Alt+Shift+E</source>
         <translation>Meta+Alt+Shift+E</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2340"/>
+        <location filename="../ViewManager/ViewManager.py" line="2362"/>
         <source>Alt+Shift+End</source>
         <translation>Alt+Shift+End</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2361"/>
+        <location filename="../ViewManager/ViewManager.py" line="2383"/>
         <source>Alt+Shift+PgDown</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2373"/>
+        <location filename="../ViewManager/ViewManager.py" line="2395"/>
         <source>Meta+Alt+Shift+V</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2393"/>
+        <location filename="../ViewManager/ViewManager.py" line="2415"/>
         <source>Scroll to start of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2408"/>
+        <location filename="../ViewManager/ViewManager.py" line="2430"/>
         <source>Scroll to end of document</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2423"/>
+        <location filename="../ViewManager/ViewManager.py" line="2445"/>
         <source>Scroll vertically to center current line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2431"/>
-        <source>Meta+L</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="2438"/>
-        <source>Move to end of next word</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="2453"/>
+        <source>Meta+L</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2460"/>
+        <source>Move to end of next word</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="2475"/>
         <source>Extend selection to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2469"/>
+        <location filename="../ViewManager/ViewManager.py" line="2491"/>
         <source>Move to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2481"/>
+        <location filename="../ViewManager/ViewManager.py" line="2503"/>
         <source>Extend selection to end of previous word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2493"/>
+        <location filename="../ViewManager/ViewManager.py" line="2515"/>
         <source>Move to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2501"/>
+        <location filename="../ViewManager/ViewManager.py" line="2523"/>
         <source>Meta+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2508"/>
+        <location filename="../ViewManager/ViewManager.py" line="2530"/>
         <source>Extend selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2519"/>
+        <location filename="../ViewManager/ViewManager.py" line="2541"/>
         <source>Meta+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2526"/>
+        <location filename="../ViewManager/ViewManager.py" line="2548"/>
         <source>Extend rectangular selection to start of document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2536"/>
+        <location filename="../ViewManager/ViewManager.py" line="2558"/>
         <source>Meta+Alt+Shift+A</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2544"/>
+        <location filename="../ViewManager/ViewManager.py" line="2566"/>
         <source>Extend selection to start of display line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2563"/>
+        <location filename="../ViewManager/ViewManager.py" line="2585"/>
         <source>Move to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2577"/>
+        <location filename="../ViewManager/ViewManager.py" line="2599"/>
         <source>Extend selection to start of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2592"/>
+        <location filename="../ViewManager/ViewManager.py" line="2614"/>
         <source>Move to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2609"/>
+        <location filename="../ViewManager/ViewManager.py" line="2631"/>
         <source>Extend selection to first visible character in display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2626"/>
+        <location filename="../ViewManager/ViewManager.py" line="2648"/>
         <source>Move to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2640"/>
+        <location filename="../ViewManager/ViewManager.py" line="2662"/>
         <source>Extend selection to end of display or document line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2655"/>
+        <location filename="../ViewManager/ViewManager.py" line="2677"/>
         <source>Stuttered move up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2667"/>
+        <location filename="../ViewManager/ViewManager.py" line="2689"/>
         <source>Stuttered extend selection up one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2680"/>
+        <location filename="../ViewManager/ViewManager.py" line="2702"/>
         <source>Stuttered move down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2692"/>
+        <location filename="../ViewManager/ViewManager.py" line="2714"/>
         <source>Stuttered extend selection down one page</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2705"/>
+        <location filename="../ViewManager/ViewManager.py" line="2727"/>
         <source>Delete right to end of next word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2713"/>
+        <location filename="../ViewManager/ViewManager.py" line="2735"/>
         <source>Alt+Del</source>
         <translation>Alt+Del</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2720"/>
+        <location filename="../ViewManager/ViewManager.py" line="2742"/>
         <source>Move selected lines up one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2732"/>
+        <location filename="../ViewManager/ViewManager.py" line="2754"/>
         <source>Move selected lines down one line</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2346"/>
+        <location filename="../ViewManager/ViewManager.py" line="2368"/>
         <source>Alt+Shift+PgUp</source>
         <translation>Alt+Shift+PgUp</translation>
     </message>
@@ -86305,39 +86300,39 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Zoom reset</source>
         <translation>重置缩放</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Zoom &amp;reset</source>
         <translation>重置缩放(&amp;R)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3525"/>
+        <location filename="../ViewManager/ViewManager.py" line="3549"/>
         <source>Ctrl+0</source>
         <comment>View|Zoom reset</comment>
         <translation>Ctrl+0</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3533"/>
+        <location filename="../ViewManager/ViewManager.py" line="3557"/>
         <source>Reset the zoom of the text</source>
         <translation>重置文本缩放大小</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3535"/>
+        <location filename="../ViewManager/ViewManager.py" line="3559"/>
         <source>&lt;b&gt;Zoom reset&lt;/b&gt;&lt;p&gt;Reset the zoom of the text. This sets the zoom factor to 100%.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3487"/>
+        <location filename="../ViewManager/ViewManager.py" line="3511"/>
         <source>Zoom In</source>
         <comment>View|Zoom in</comment>
         <translation>放大</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3506"/>
+        <location filename="../ViewManager/ViewManager.py" line="3530"/>
         <source>Zoom Out</source>
         <comment>View|Zoom out</comment>
         <translation>缩小</translation>
@@ -86348,191 +86343,191 @@
         <translation>全部保存(&amp;A)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4246"/>
+        <location filename="../ViewManager/ViewManager.py" line="4270"/>
         <source>Next Change</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4240"/>
-        <source>&amp;Next Change</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="4248"/>
-        <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="4264"/>
+        <source>&amp;Next Change</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4272"/>
+        <source>&lt;b&gt;Next Change&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a change marker.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="4288"/>
         <source>Previous Change</source>
         <translation>上一个更改</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4257"/>
+        <location filename="../ViewManager/ViewManager.py" line="4281"/>
         <source>&amp;Previous Change</source>
         <translation>上一个更改(&amp;P)</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4266"/>
+        <location filename="../ViewManager/ViewManager.py" line="4290"/>
         <source>&lt;b&gt;Previous Change&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a change marker.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Check spelling</source>
         <translation>检查拼写</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4364"/>
+        <location filename="../ViewManager/ViewManager.py" line="4388"/>
         <source>Check &amp;spelling...</source>
         <translation>检查拼写(&amp;S)…</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4375"/>
+        <location filename="../ViewManager/ViewManager.py" line="4399"/>
         <source>&lt;b&gt;Check spelling&lt;/b&gt;&lt;p&gt;Perform a spell check of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4424"/>
+        <location filename="../ViewManager/ViewManager.py" line="4448"/>
         <source>Edit Dictionary</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4426"/>
+        <location filename="../ViewManager/ViewManager.py" line="4450"/>
         <source>Project Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4429"/>
+        <location filename="../ViewManager/ViewManager.py" line="4453"/>
         <source>Project Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4434"/>
+        <location filename="../ViewManager/ViewManager.py" line="4458"/>
         <source>User Word List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4437"/>
+        <location filename="../ViewManager/ViewManager.py" line="4461"/>
         <source>User Exception List</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6630"/>
+        <location filename="../ViewManager/ViewManager.py" line="6654"/>
         <source>Edit Spelling Dictionary</source>
         <translation type="unfinished">编辑拼写字典</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6607"/>
+        <location filename="../ViewManager/ViewManager.py" line="6631"/>
         <source>Editing {0}</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6589"/>
+        <location filename="../ViewManager/ViewManager.py" line="6613"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be read.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6618"/>
+        <location filename="../ViewManager/ViewManager.py" line="6642"/>
         <source>&lt;p&gt;The spelling dictionary file &lt;b&gt;{0}&lt;/b&gt; could not be written.&lt;/p&gt;&lt;p&gt;Reason: {1}&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="6630"/>
+        <location filename="../ViewManager/ViewManager.py" line="6654"/>
         <source>The spelling dictionary was saved successfully.</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2955"/>
+        <location filename="../ViewManager/ViewManager.py" line="2979"/>
         <source>Search current word forward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2955"/>
+        <location filename="../ViewManager/ViewManager.py" line="2979"/>
         <source>Ctrl+.</source>
         <comment>Search|Search current word forward</comment>
         <translation>Ctrl+.</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2966"/>
+        <location filename="../ViewManager/ViewManager.py" line="2990"/>
         <source>Search next occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2969"/>
+        <location filename="../ViewManager/ViewManager.py" line="2993"/>
         <source>&lt;b&gt;Search current word forward&lt;/b&gt;&lt;p&gt;Search the next occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2978"/>
+        <location filename="../ViewManager/ViewManager.py" line="3002"/>
         <source>Search current word backward</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2978"/>
+        <location filename="../ViewManager/ViewManager.py" line="3002"/>
         <source>Ctrl+,</source>
         <comment>Search|Search current word backward</comment>
         <translation>Ctrl+,</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2989"/>
+        <location filename="../ViewManager/ViewManager.py" line="3013"/>
         <source>Search previous occurrence of the current word</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2992"/>
+        <location filename="../ViewManager/ViewManager.py" line="3016"/>
         <source>&lt;b&gt;Search current word backward&lt;/b&gt;&lt;p&gt;Search the previous occurrence of the current word of the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Search in Open Files</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Search in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3299"/>
+        <location filename="../ViewManager/ViewManager.py" line="3323"/>
         <source>Meta+Ctrl+Alt+F</source>
         <comment>Search|Search Open Files</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3310"/>
-        <source>Search for a text in open files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3312"/>
-        <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
-        <source>Replace in Open Files</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
-        <source>Meta+Ctrl+Alt+R</source>
-        <comment>Search|Replace in Open Files</comment>
-        <translation>Meta+Ctrl+Alt+R</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3332"/>
-        <source>Search for a text in open files and replace it</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3334"/>
+        <source>Search for a text in open files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3336"/>
+        <source>&lt;b&gt;Search in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files. A dialog is shown to enter the searchtext and options for the search and to display the result.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
+        <source>Replace in Open Files</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
+        <source>Meta+Ctrl+Alt+R</source>
+        <comment>Search|Replace in Open Files</comment>
+        <translation>Meta+Ctrl+Alt+R</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3356"/>
+        <source>Search for a text in open files and replace it</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3358"/>
         <source>&lt;b&gt;Replace in Open Files&lt;/b&gt;&lt;p&gt;Search for some text in the currently opened files and replace it. A dialog is shown to enter the searchtext, the replacement text and options for the search and to display the result.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3322"/>
+        <location filename="../ViewManager/ViewManager.py" line="3346"/>
         <source>Replace in Open Files...</source>
         <translation type="unfinished"></translation>
     </message>
@@ -86558,62 +86553,62 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4953"/>
+        <location filename="../ViewManager/ViewManager.py" line="4977"/>
         <source>Language: {0}</source>
         <translation>语言:{0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4960"/>
+        <location filename="../ViewManager/ViewManager.py" line="4984"/>
         <source>EOL Mode: {0}</source>
         <translation>行尾模式:{0}</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3641"/>
+        <location filename="../ViewManager/ViewManager.py" line="3665"/>
         <source>New Document View</source>
         <translation>新建文档视图</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3641"/>
-        <source>New &amp;Document View</source>
-        <translation>新建文档视图(&amp;D)</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3646"/>
-        <source>Open a new view of the current document</source>
-        <translation>在新视图(新选项卡)中打开当前文档</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3648"/>
-        <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
-        <translation>&lt;b&gt;新建文档视图&lt;/b&gt;&lt;p&gt;在新视图中打开当前文档。两个视图将显示同一个文档。然而,两者的光标位置各自独立。&lt;/p&gt;</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3658"/>
-        <source>New Document View (with new split)</source>
-        <translation>新建文档视图(在新拆分页中)</translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3665"/>
+        <source>New &amp;Document View</source>
+        <translation>新建文档视图(&amp;D)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3670"/>
+        <source>Open a new view of the current document</source>
+        <translation>在新视图(新选项卡)中打开当前文档</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3672"/>
+        <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
+        <translation>&lt;b&gt;新建文档视图&lt;/b&gt;&lt;p&gt;在新视图中打开当前文档。两个视图将显示同一个文档。然而,两者的光标位置各自独立。&lt;/p&gt;</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3682"/>
+        <source>New Document View (with new split)</source>
+        <translation>新建文档视图(在新拆分页中)</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3689"/>
         <source>Open a new view of the current document in a new split</source>
         <translation>在新拆分页中的新视图(新选项卡)中打开当前文档</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3668"/>
+        <location filename="../ViewManager/ViewManager.py" line="3692"/>
         <source>&lt;b&gt;New Document View&lt;/b&gt;&lt;p&gt;Opens a new view of the current document in a new split. Both views show the same document. However, the cursors may be positioned independently.&lt;/p&gt;</source>
         <translation>&lt;b&gt;新建文档视图&lt;/b&gt;&lt;p&gt;在新拆分页的新视图中打开当前文档。两个视图将显示同一个文档。然而,两者的光标位置各自独立。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4124"/>
+        <location filename="../ViewManager/ViewManager.py" line="4148"/>
         <source>&lt;b&gt;Next warning message&lt;/b&gt;&lt;p&gt;Go to next line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation>&lt;b&gt;下一个警告信息&lt;/b&gt;&lt;p&gt;跳转至当前编辑器中下一个出现 pyflakes 警告的行。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4143"/>
+        <location filename="../ViewManager/ViewManager.py" line="4167"/>
         <source>&lt;b&gt;Previous warning message&lt;/b&gt;&lt;p&gt;Go to previous line of the current editor having a pyflakes warning.&lt;/p&gt;</source>
         <translation>&lt;b&gt;上一个警告信息&lt;/b&gt;&lt;p&gt;跳转至当前编辑器中上一个出现 pyflakes 警告的行。&lt;/p&gt;</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="4161"/>
+        <location filename="../ViewManager/ViewManager.py" line="4185"/>
         <source>&lt;b&gt;Clear Warning Messages&lt;/b&gt;&lt;p&gt;Clear pyflakes warning messages of all editors.&lt;/p&gt;</source>
         <translation>&lt;b&gt;清空警告信息&lt;/b&gt;&lt;p&gt;在所有编辑器中清空 pyflakes 警告信息。&lt;/p&gt;</translation>
     </message>
@@ -86668,65 +86663,65 @@
         <translation>Ctrl+G</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3020"/>
+        <location filename="../ViewManager/ViewManager.py" line="3044"/>
         <source>Replace and Search</source>
         <translation type="unfinished">替换和搜索</translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3020"/>
-        <source>Meta+R</source>
-        <comment>Search|Replace and Search</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3030"/>
-        <source>Replace the found text and search the next occurrence</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3033"/>
-        <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3044"/>
-        <source>Replace Occurrence</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3044"/>
-        <source>Ctrl+Meta+R</source>
-        <comment>Search|Replace Occurrence</comment>
+        <source>Meta+R</source>
+        <comment>Search|Replace and Search</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3054"/>
-        <source>Replace the found text</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3056"/>
-        <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3066"/>
-        <source>Replace All</source>
-        <translation type="unfinished">替换全部</translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3066"/>
-        <source>Shift+Meta+R</source>
-        <comment>Search|Replace All</comment>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3076"/>
-        <source>Replace search text occurrences</source>
+        <source>Replace the found text and search the next occurrence</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3057"/>
+        <source>&lt;b&gt;Replace and Search&lt;/b&gt;&lt;p&gt;Replace the found occurrence of text in the current editor and search for the next one. The previously entered search text and options are reused.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <source>Replace Occurrence</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3068"/>
+        <source>Ctrl+Meta+R</source>
+        <comment>Search|Replace Occurrence</comment>
         <translation type="unfinished"></translation>
     </message>
     <message>
         <location filename="../ViewManager/ViewManager.py" line="3078"/>
+        <source>Replace the found text</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3080"/>
+        <source>&lt;b&gt;Replace Occurrence&lt;/b&gt;&lt;p&gt;Replace the found occurrence of the search text in the current editor.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <source>Replace All</source>
+        <translation type="unfinished">替换全部</translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3090"/>
+        <source>Shift+Meta+R</source>
+        <comment>Search|Replace All</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3100"/>
+        <source>Replace search text occurrences</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3102"/>
         <source>&lt;b&gt;Replace All&lt;/b&gt;&lt;p&gt;Replace all occurrences of the search text in the current editor.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -86752,57 +86747,57 @@
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3614"/>
+        <location filename="../ViewManager/ViewManager.py" line="3638"/>
         <source>Clear all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3610"/>
+        <location filename="../ViewManager/ViewManager.py" line="3634"/>
         <source>Clear &amp;all folds</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3616"/>
+        <location filename="../ViewManager/ViewManager.py" line="3640"/>
         <source>&lt;b&gt;Clear all folds&lt;/b&gt;&lt;p&gt;Clear all folds of the current editor, i.e. ensure that all lines are displayed unfolded.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Reverse selected lines</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="2148"/>
+        <location filename="../ViewManager/ViewManager.py" line="2170"/>
         <source>Meta+Alt+R</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3774"/>
-        <source>Python AST Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3779"/>
-        <source>Show the AST for the current Python file</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3781"/>
-        <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
-        <location filename="../ViewManager/ViewManager.py" line="3791"/>
-        <source>Python Disassembly Viewer</source>
-        <translation type="unfinished"></translation>
-    </message>
-    <message>
         <location filename="../ViewManager/ViewManager.py" line="3798"/>
+        <source>Python AST Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3803"/>
+        <source>Show the AST for the current Python file</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3805"/>
+        <source>&lt;b&gt;Python AST Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the AST of the current Python source file.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3815"/>
+        <source>Python Disassembly Viewer</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="3822"/>
         <source>Show the Disassembly for the current Python file</source>
         <translation type="unfinished"></translation>
     </message>
     <message>
-        <location filename="../ViewManager/ViewManager.py" line="3800"/>
+        <location filename="../ViewManager/ViewManager.py" line="3824"/>
         <source>&lt;b&gt;Python Disassembly Viewer&lt;/b&gt;&lt;p&gt;This opens the a tree view of the Disassembly of the current Python source file.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
@@ -86821,6 +86816,27 @@
         <source>&lt;b&gt;Search previous&lt;/b&gt;&lt;p&gt;Search the previous occurrence of some text in the shell window. The previously entered search text and options are reused.&lt;/p&gt;</source>
         <translation type="unfinished"></translation>
     </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1468"/>
+        <source>Generate Docstring</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1468"/>
+        <source>Ctrl+Alt+D</source>
+        <comment>Edit|Generate Docstring</comment>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1475"/>
+        <source>Generate a docstring for the current function/method</source>
+        <translation type="unfinished"></translation>
+    </message>
+    <message>
+        <location filename="../ViewManager/ViewManager.py" line="1478"/>
+        <source>&lt;b&gt;Generate Docstring&lt;/b&gt;&lt;p&gt;Generate a docstring for the current function/method if the cursor is placed on the line starting the function definition or on the line thereafter. The docstring is inserted at the appropriate position and the cursor is placed at the end of the description line.&lt;/p&gt;</source>
+        <translation type="unfinished"></translation>
+    </message>
 </context>
 <context>
     <name>ViewProfileSidebarsDialog</name>

eric ide

mercurial