<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Text Editor on kenji.blog</title><link>http://kenji.blog/en/tags/text-editor/</link><description>Recent content in Text Editor on kenji.blog</description><generator>Hugo -- gohugo.io</generator><language>en</language><copyright>kenjinote</copyright><lastBuildDate>Fri, 19 Apr 2024 22:06:34 +0900</lastBuildDate><atom:link href="http://kenji.blog/en/tags/text-editor/index.xml" rel="self" type="application/rss+xml"/><item><title>Introduction to Vim</title><link>http://kenji.blog/en/p/vim%E5%85%A5%E9%96%80/</link><pubDate>Fri, 19 Apr 2024 22:06:34 +0900</pubDate><guid>http://kenji.blog/en/p/vim%E5%85%A5%E9%96%80/</guid><description>&lt;img src="http://kenji.blog/p/vim%E5%85%A5%E9%96%80/img.png" alt="Featured image of post Introduction to Vim" />&lt;p>&lt;img src="http://kenji.blog/p/vim%E5%85%A5%E9%96%80/img_1.png"
width="1920"
height="1080"
srcset="http://kenji.blog/p/vim%E5%85%A5%E9%96%80/img_1_hue190cb5546151f3c9f61d693ae541095_45716_480x0_resize_box_3.png 480w, http://kenji.blog/p/vim%E5%85%A5%E9%96%80/img_1_hue190cb5546151f3c9f61d693ae541095_45716_1024x0_resize_box_3.png 1024w"
loading="lazy"
alt="img_1.png"
class="gallery-image"
data-flex-grow="177"
data-flex-basis="426px"
>&lt;/p>
&lt;h1 id="introduction-to-vim">Introduction to Vim
&lt;/h1>&lt;h2 id="download-and-installation">Download and Installation
&lt;/h2>&lt;p>&lt;a class="link" href="https://www.vim.org/download.php" target="_blank" rel="noopener"
>https://www.vim.org/download.php&lt;/a>&lt;/p>
&lt;p>From the site above, download and install the appropriate module for your OS.&lt;/p>
&lt;p>For Windows, it is recommended to choose &lt;code>gvim_X.X.X_x64_signed.exe&lt;/code>.&lt;/p>
&lt;h2 id="how-to-start">How to Start
&lt;/h2>&lt;p>For Windows, you need to register the folder containing &lt;code>vim.exe&lt;/code> to the Path environment variable.&lt;/p>
&lt;p>How to start:&lt;/p>
&lt;div class="highlight">&lt;div class="chroma">
&lt;table class="lntable">&lt;tr>&lt;td class="lntd">
&lt;pre tabindex="0" class="chroma">&lt;code>&lt;span class="lnt">1
&lt;/span>&lt;/code>&lt;/pre>&lt;/td>
&lt;td class="lntd">
&lt;pre tabindex="0" class="chroma">&lt;code class="language-fallback" data-lang="fallback">&lt;span class="line">&lt;span class="cl">vim
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/td>&lt;/tr>&lt;/table>
&lt;/div>
&lt;/div>&lt;p>When specifying a file name to start:&lt;/p>
&lt;div class="highlight">&lt;div class="chroma">
&lt;table class="lntable">&lt;tr>&lt;td class="lntd">
&lt;pre tabindex="0" class="chroma">&lt;code>&lt;span class="lnt">1
&lt;/span>&lt;/code>&lt;/pre>&lt;/td>
&lt;td class="lntd">
&lt;pre tabindex="0" class="chroma">&lt;code class="language-fallback" data-lang="fallback">&lt;span class="line">&lt;span class="cl">vim filename.txt
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/td>&lt;/tr>&lt;/table>
&lt;/div>
&lt;/div>&lt;h2 id="how-to-exit">How to Exit
&lt;/h2>&lt;p>To exit, type &lt;code>:&lt;/code> (colon), then &lt;code>q&lt;/code>, and press Enter.&lt;/p>
&lt;div class="highlight">&lt;div class="chroma">
&lt;table class="lntable">&lt;tr>&lt;td class="lntd">
&lt;pre tabindex="0" class="chroma">&lt;code>&lt;span class="lnt">1
&lt;/span>&lt;/code>&lt;/pre>&lt;/td>
&lt;td class="lntd">
&lt;pre tabindex="0" class="chroma">&lt;code class="language-fallback" data-lang="fallback">&lt;span class="line">&lt;span class="cl">:q
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/td>&lt;/tr>&lt;/table>
&lt;/div>
&lt;/div>&lt;p>If you have modified the file, a message saying &lt;code>No write since last change (add ! to override)&lt;/code> will be displayed.
You can discard the changes and force quit.&lt;/p>
&lt;div class="highlight">&lt;div class="chroma">
&lt;table class="lntable">&lt;tr>&lt;td class="lntd">
&lt;pre tabindex="0" class="chroma">&lt;code>&lt;span class="lnt">1
&lt;/span>&lt;/code>&lt;/pre>&lt;/td>
&lt;td class="lntd">
&lt;pre tabindex="0" class="chroma">&lt;code class="language-fallback" data-lang="fallback">&lt;span class="line">&lt;span class="cl">:q!
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/td>&lt;/tr>&lt;/table>
&lt;/div>
&lt;/div>&lt;p>To save the file and exit:&lt;/p>
&lt;div class="highlight">&lt;div class="chroma">
&lt;table class="lntable">&lt;tr>&lt;td class="lntd">
&lt;pre tabindex="0" class="chroma">&lt;code>&lt;span class="lnt">1
&lt;/span>&lt;/code>&lt;/pre>&lt;/td>
&lt;td class="lntd">
&lt;pre tabindex="0" class="chroma">&lt;code class="language-fallback" data-lang="fallback">&lt;span class="line">&lt;span class="cl">:wq
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/td>&lt;/tr>&lt;/table>
&lt;/div>
&lt;/div>&lt;p>The following has the same meaning:&lt;/p>
&lt;div class="highlight">&lt;div class="chroma">
&lt;table class="lntable">&lt;tr>&lt;td class="lntd">
&lt;pre tabindex="0" class="chroma">&lt;code>&lt;span class="lnt">1
&lt;/span>&lt;/code>&lt;/pre>&lt;/td>
&lt;td class="lntd">
&lt;pre tabindex="0" class="chroma">&lt;code class="language-fallback" data-lang="fallback">&lt;span class="line">&lt;span class="cl">:x
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/td>&lt;/tr>&lt;/table>
&lt;/div>
&lt;/div>&lt;p>You can also exit by pressing &lt;code>z&lt;/code> twice while holding down &lt;code>Shift&lt;/code> (same as &lt;code>:wq&lt;/code>).&lt;/p>
&lt;h2 id="modes">Modes
&lt;/h2>&lt;p>Vim has a &lt;code>Command mode&lt;/code> and an &lt;code>Insert mode&lt;/code>. When you start Vim, it is in &lt;code>Command mode&lt;/code>. Pressing the &lt;code>i&lt;/code> key switches to &lt;code>Insert mode&lt;/code>.&lt;/p>
&lt;p>In &lt;code>Insert mode&lt;/code>, you can literally type text. To return from &lt;code>Insert mode&lt;/code> to &lt;code>Command mode&lt;/code>, press the &lt;code>ESC&lt;/code> key.&lt;/p>
&lt;p>This switching of input modes is a distinct characteristic of Vim.&lt;/p>
&lt;h2 id="cursor-movement-and-scrolling">Cursor Movement and Scrolling
&lt;/h2>&lt;p>Here is a summary of cursor movement and scrolling in &lt;code>Command mode&lt;/code>.&lt;/p>
&lt;table>
&lt;thead>
&lt;tr>
&lt;th>Key&lt;/th>
&lt;th>Description&lt;/th>
&lt;/tr>
&lt;/thead>
&lt;tbody>
&lt;tr>
&lt;td>&lt;code>h&lt;/code> (or &lt;code>Ctrl&lt;/code>+&lt;code>H&lt;/code>, &lt;code>BackSpace&lt;/code>, &lt;code>←&lt;/code>)&lt;/td>
&lt;td>Move left&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;code>j&lt;/code> (or &lt;code>Ctrl&lt;/code>+&lt;code>J&lt;/code>, &lt;code>Ctrl&lt;/code>+&lt;code>N&lt;/code>, &lt;code>↓&lt;/code>)&lt;/td>
&lt;td>Move down&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;code>k&lt;/code> (or &lt;code>Ctrl&lt;/code>+&lt;code>P&lt;/code>, &lt;code>↑&lt;/code>)&lt;/td>
&lt;td>Move up&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;code>l&lt;/code> (or &lt;code>Space&lt;/code>, &lt;code>→&lt;/code>)&lt;/td>
&lt;td>Move right&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;code>+&lt;/code> (or &lt;code>Enter&lt;/code>)&lt;/td>
&lt;td>Move to the beginning of the next line&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;code>-&lt;/code>&lt;/td>
&lt;td>Move to the beginning of the previous line&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;code>Ctrl&lt;/code>+&lt;code>B&lt;/code> (or &lt;code>PageUp&lt;/code>)&lt;/td>
&lt;td>Scroll up&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;code>Ctrl&lt;/code>+&lt;code>F&lt;/code> (or &lt;code>PageDown&lt;/code>)&lt;/td>
&lt;td>Scroll down&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;code>Ctrl&lt;/code>+&lt;code>U&lt;/code>&lt;/td>
&lt;td>Scroll half a screen up&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;code>Ctrl&lt;/code>+&lt;code>D&lt;/code>&lt;/td>
&lt;td>Scroll half a screen down&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;code>Ctrl&lt;/code>+&lt;code>Y&lt;/code>&lt;/td>
&lt;td>Scroll one line up&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;code>Ctrl&lt;/code>+&lt;code>E&lt;/code>&lt;/td>
&lt;td>Scroll one line down&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;code>z&lt;/code> &lt;code>Enter&lt;/code>&lt;/td>
&lt;td>Scroll cursor line to top of screen&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;code>z&lt;/code> &lt;code>.&lt;/code>&lt;/td>
&lt;td>Scroll cursor line to middle of screen&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;code>z&lt;/code> &lt;code>-&lt;/code>&lt;/td>
&lt;td>Scroll cursor line to bottom of screen&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;code>0&lt;/code> (or &lt;code>|&lt;/code>)&lt;/td>
&lt;td>Move cursor to the beginning of the line&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;code>$&lt;/code>&lt;/td>
&lt;td>Move cursor to the end of the line&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;code>^&lt;/code> (or &lt;code>_&lt;/code>)&lt;/td>
&lt;td>Move cursor to the first non-blank character of the line&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;code>G&lt;/code> (or &lt;code>:$&lt;/code>)&lt;/td>
&lt;td>Move cursor to the last line&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;code>:Line Number&lt;/code> &lt;code>Enter&lt;/code>&lt;/td>
&lt;td>Move to specified line&lt;/td>
&lt;/tr>
&lt;/tbody>
&lt;/table>
&lt;p>If you type a &lt;code>Number&lt;/code> followed by any of the above movement keys, it will move that many times.
(For example, typing &lt;code>3j&lt;/code> will move the cursor down 3 lines from the current position.)&lt;/p>
&lt;h2 id="other-commands">Other Commands
&lt;/h2>&lt;table>
&lt;thead>
&lt;tr>
&lt;th>Key&lt;/th>
&lt;th>Description&lt;/th>
&lt;/tr>
&lt;/thead>
&lt;tbody>
&lt;tr>
&lt;td>&lt;code>Ctrl&lt;/code>+&lt;code>L&lt;/code>&lt;/td>
&lt;td>Redraw the screen&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>&lt;code>Ctrl&lt;/code>+&lt;code>G&lt;/code>&lt;/td>
&lt;td>Show file status, number of lines, cursor position, etc.&lt;/td>
&lt;/tr>
&lt;/tbody>
&lt;/table></description></item><item><title>How to install the text editor micro on Windows</title><link>http://kenji.blog/en/p/%E3%83%86%E3%82%AD%E3%82%B9%E3%83%88%E3%82%A8%E3%83%87%E3%82%A3%E3%82%BFmicro%E3%82%92windows%E3%81%AB%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB%E3%81%99%E3%82%8B%E6%96%B9%E6%B3%95/</link><pubDate>Sun, 31 Mar 2024 21:50:39 +0900</pubDate><guid>http://kenji.blog/en/p/%E3%83%86%E3%82%AD%E3%82%B9%E3%83%88%E3%82%A8%E3%83%87%E3%82%A3%E3%82%BFmicro%E3%82%92windows%E3%81%AB%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB%E3%81%99%E3%82%8B%E6%96%B9%E6%B3%95/</guid><description>&lt;img src="http://kenji.blog/p/%E3%83%86%E3%82%AD%E3%82%B9%E3%83%88%E3%82%A8%E3%83%87%E3%82%A3%E3%82%BFmicro%E3%82%92windows%E3%81%AB%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB%E3%81%99%E3%82%8B%E6%96%B9%E6%B3%95/img.png" alt="Featured image of post How to install the text editor micro on Windows" />&lt;h2 id="download-micro">Download micro
&lt;/h2>&lt;p>&lt;a class="link" href="https://github.com/zyedidia/micro/releases" target="_blank" rel="noopener"
>https://github.com/zyedidia/micro/releases&lt;/a>&lt;/p>
&lt;p>Open the link above, click &lt;code>Show all XX assets&lt;/code> (where X is a number), and download &lt;code>micro-X.X.XX-win64.zip&lt;/code> (where X is a number).
Unzip the zip file and place the files in a folder of your choice.&lt;/p>
&lt;h2 id="set-environment-variables">Set Environment Variables
&lt;/h2>&lt;p>To use &lt;code>micro.exe&lt;/code> from the command prompt, you need to set the environment variables.&lt;/p>
&lt;ol>
&lt;li>Press &lt;code>Win key&lt;/code> + &lt;code>R key&lt;/code>, type &lt;code>sysdm.cpl&lt;/code>, and press &lt;code>Enter&lt;/code>.&lt;/li>
&lt;li>Click &lt;code>System Properties&lt;/code> in &lt;code>System Properties&lt;/code>.&lt;/li>
&lt;li>Click &lt;code>Environment Variables&lt;/code>.&lt;/li>
&lt;li>Select &lt;code>Path&lt;/code> under &lt;code>System variables&lt;/code> and click &lt;code>Edit&lt;/code>.&lt;/li>
&lt;li>Click &lt;code>New&lt;/code> and add the path of the folder containing &lt;code>micro.exe&lt;/code>.&lt;/li>
&lt;li>Click &lt;code>OK&lt;/code> to close all dialogs.&lt;/li>
&lt;li>Restart the command prompt and type &lt;code>nano&lt;/code> to check if it can be executed.&lt;/li>
&lt;/ol>
&lt;h2 id="how-to-use-micro">How to use micro
&lt;/h2>&lt;p>When you type &lt;code>micro&lt;/code> in the command prompt and execute it, the following screen is displayed.
&lt;img src="http://kenji.blog/p/%E3%83%86%E3%82%AD%E3%82%B9%E3%83%88%E3%82%A8%E3%83%87%E3%82%A3%E3%82%BFmicro%E3%82%92windows%E3%81%AB%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB%E3%81%99%E3%82%8B%E6%96%B9%E6%B3%95/img_3.png"
width="962"
height="512"
srcset="http://kenji.blog/p/%E3%83%86%E3%82%AD%E3%82%B9%E3%83%88%E3%82%A8%E3%83%87%E3%82%A3%E3%82%BFmicro%E3%82%92windows%E3%81%AB%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB%E3%81%99%E3%82%8B%E6%96%B9%E6%B3%95/img_3_hucac22a4d580735ddd83b1fd5173c3197_6852_480x0_resize_box_3.png 480w, http://kenji.blog/p/%E3%83%86%E3%82%AD%E3%82%B9%E3%83%88%E3%82%A8%E3%83%87%E3%82%A3%E3%82%BFmicro%E3%82%92windows%E3%81%AB%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB%E3%81%99%E3%82%8B%E6%96%B9%E6%B3%95/img_3_hucac22a4d580735ddd83b1fd5173c3197_6852_1024x0_resize_box_3.png 1024w"
loading="lazy"
alt="img_3.png"
class="gallery-image"
data-flex-grow="187"
data-flex-basis="450px"
>&lt;/p>
&lt;p>The main operations and shortcut keys are as follows.&lt;/p>
&lt;table>
&lt;thead>
&lt;tr>
&lt;th>Shortcut Key&lt;/th>
&lt;th>Operation&lt;/th>
&lt;/tr>
&lt;/thead>
&lt;tbody>
&lt;tr>
&lt;td>Ctrl+Q&lt;/td>
&lt;td>Close file&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>Ctrl+S&lt;/td>
&lt;td>Save file&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>Ctrl+O&lt;/td>
&lt;td>Open file&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>Ctrl+A&lt;/td>
&lt;td>Select all&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>Ctrl+X&lt;/td>
&lt;td>Cut selection&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>Ctrl+C&lt;/td>
&lt;td>Copy selection&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>Ctrl+V&lt;/td>
&lt;td>Paste&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>Ctrl+Z&lt;/td>
&lt;td>Undo&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>Ctrl+Y&lt;/td>
&lt;td>Redo&lt;/td>
&lt;/tr>
&lt;tr>
&lt;td>Ctrl+E&lt;/td>
&lt;td>Execute editor command&lt;/td>
&lt;/tr>
&lt;/tbody>
&lt;/table>
&lt;h2 id="reference">Reference
&lt;/h2>&lt;ul>
&lt;li>&lt;a class="link" href="https://micro-editor.github.io/" target="_blank" rel="noopener"
>micro&lt;/a>&lt;/li>
&lt;/ul></description></item><item><title>How to install CLI text editor nano on Windows</title><link>http://kenji.blog/en/p/cli%E3%83%86%E3%82%AD%E3%82%B9%E3%83%88%E3%82%A8%E3%83%87%E3%82%A3%E3%82%BFnano%E3%82%92windows%E3%81%AB%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB%E3%81%99%E3%82%8B%E6%96%B9%E6%B3%95/</link><pubDate>Sun, 31 Mar 2024 18:09:32 +0900</pubDate><guid>http://kenji.blog/en/p/cli%E3%83%86%E3%82%AD%E3%82%B9%E3%83%88%E3%82%A8%E3%83%87%E3%82%A3%E3%82%BFnano%E3%82%92windows%E3%81%AB%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB%E3%81%99%E3%82%8B%E6%96%B9%E6%B3%95/</guid><description>&lt;img src="http://kenji.blog/p/cli%E3%83%86%E3%82%AD%E3%82%B9%E3%83%88%E3%82%A8%E3%83%87%E3%82%A3%E3%82%BFnano%E3%82%92windows%E3%81%AB%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB%E3%81%99%E3%82%8B%E6%96%B9%E6%B3%95/img_1.png" alt="Featured image of post How to install CLI text editor nano on Windows" />&lt;h2 id="download-nanoexe">Download nano.exe
&lt;/h2>&lt;p>&lt;a class="link" href="https://sourceforge.net/projects/nano-for-windows/" target="_blank" rel="noopener"
>https://sourceforge.net/projects/nano-for-windows/&lt;/a>&lt;/p>
&lt;p>Open the link above, click &lt;code>Download&lt;/code>, and download &lt;code>GNU-Nano_Win32(static).zip&lt;/code>.
Extract the zip file and place &lt;code>nano.exe&lt;/code> in an arbitrary folder.&lt;/p>
&lt;ul>
&lt;li>Note: Japanese input is not supported. (As of 2024/03/31)&lt;/li>
&lt;/ul>
&lt;h2 id="set-environment-variables">Set Environment Variables
&lt;/h2>&lt;p>In order to use &lt;code>nano.exe&lt;/code> from the command prompt, you need to set the environment variables.&lt;/p>
&lt;ol>
&lt;li>Press &lt;code>Win key&lt;/code> + &lt;code>R key&lt;/code>, type &lt;code>sysdm.cpl&lt;/code>, and press &lt;code>Enter key&lt;/code>.&lt;/li>
&lt;li>In &lt;code>System Properties&lt;/code>, click on the &lt;code>Advanced&lt;/code> tab.&lt;/li>
&lt;li>Click on &lt;code>Environment Variables&lt;/code>.&lt;/li>
&lt;li>Select &lt;code>Path&lt;/code> under &lt;code>System variables&lt;/code> and click &lt;code>Edit&lt;/code>.&lt;/li>
&lt;li>Click &lt;code>New&lt;/code> and add the path to &lt;code>nano.exe&lt;/code>.&lt;/li>
&lt;li>Click &lt;code>OK&lt;/code> to close all dialogs.&lt;/li>
&lt;li>Restart the command prompt, type &lt;code>nano&lt;/code>, and check if it can be executed.&lt;/li>
&lt;/ol>
&lt;h2 id="how-to-use-nano">How to use nano
&lt;/h2>&lt;p>When you type &lt;code>nano&lt;/code> and execute it, a screen like the following will be displayed.&lt;/p>
&lt;p>&lt;img src="http://kenji.blog/p/cli%E3%83%86%E3%82%AD%E3%82%B9%E3%83%88%E3%82%A8%E3%83%87%E3%82%A3%E3%82%BFnano%E3%82%92windows%E3%81%AB%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB%E3%81%99%E3%82%8B%E6%96%B9%E6%B3%95/img_2.png"
width="1082"
height="632"
srcset="http://kenji.blog/p/cli%E3%83%86%E3%82%AD%E3%82%B9%E3%83%88%E3%82%A8%E3%83%87%E3%82%A3%E3%82%BFnano%E3%82%92windows%E3%81%AB%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB%E3%81%99%E3%82%8B%E6%96%B9%E6%B3%95/img_2_hucb9efcdf08d2eda99abffd0a9502a2c3_16316_480x0_resize_box_3.png 480w, http://kenji.blog/p/cli%E3%83%86%E3%82%AD%E3%82%B9%E3%83%88%E3%82%A8%E3%83%87%E3%82%A3%E3%82%BFnano%E3%82%92windows%E3%81%AB%E3%82%A4%E3%83%B3%E3%82%B9%E3%83%88%E3%83%BC%E3%83%AB%E3%81%99%E3%82%8B%E6%96%B9%E6%B3%95/img_2_hucb9efcdf08d2eda99abffd0a9502a2c3_16316_1024x0_resize_box_3.png 1024w"
loading="lazy"
alt="img_2.png"
class="gallery-image"
data-flex-grow="171"
data-flex-basis="410px"
>&lt;/p>
&lt;p>Shortcut descriptions are displayed at the bottom of the screen.&lt;/p>
&lt;p>The meanings of the symbols are as follows:&lt;/p>
&lt;ul>
&lt;li>&lt;code>^&lt;/code> represents the &lt;code>Ctrl&lt;/code> key.&lt;/li>
&lt;li>&lt;code>M-&lt;/code> represents the &lt;code>Alt&lt;/code> key.&lt;/li>
&lt;/ul>
&lt;p>To save and close, press &lt;code>Ctrl&lt;/code> + &lt;code>S&lt;/code> and then &lt;code>Ctrl&lt;/code> + &lt;code>X&lt;/code>.&lt;/p>
&lt;h2 id="reference">Reference
&lt;/h2>&lt;ul>
&lt;li>&lt;a class="link" href="https://www.nano-editor.org/" target="_blank" rel="noopener"
>GNU nano&lt;/a>&lt;/li>
&lt;/ul></description></item></channel></rss>