プログラマーが利用できるテキストエディターはたくさんありますが、無料でユーザーフレンドリーで機能が豊富なため、ほとんどの人がメモ帳の代わりにメモ(alternative to Notepad)Notepad++を選択することがよくあります。WindowsPC用(Windows PC)のNotepad++に慣れていない場合は、.html、 .css、.php、.asp、.bash、.jsなどのさまざまな言語を記述できることを知っておく必要があります。ここでは、始めるために使用できるNotepad++ tips and tricks
Notepad++のヒントとコツ
1]特定のことを自動的に実行する(Perform)
Notepad++が持つ最も時間の節約になる機能です。これにより、実際に再度実行しなくても、タスクを複数回繰り返すことができるようになります。マクロ(Macro)を記録して、自動的に行為を実行することができます。特定のテキストを別のファイルに置き換えて、特定の形式で保存するとします。プロセス全体を記録し、後でそのタスクを実行するときはいつでも再生する必要があります。必要な数のマクロを保存することができます。マクロ(Macro)を記録するには、 Notepad++のナビゲーションメニューの[マクロ]セクションに移動します(Macro )。
2]特定のブラウザでコードを起動する(Launch)
HTMLとCSSで数行のコードを記述したと仮定しましょう。ここで、ライブWebサイトに適用せずに、そのページの外観を確認します。2つのオプションがあります。まず(First)、そのコードをそれぞれの拡張子(ここでは.html)で保存し、任意のWebブラウザーでファイルを開くことができます。または、これを行わずに特定のブラウザでコードを起動することもできます。コードを書き留めて、[実行]> [Firefox / IE / Chrome/Safariで起動]を選択し(Just)Run > Launch in Firefox/IE/Chrome/Safari。これで、ページが目的のWebブラウザで直接開きます。
3]設定を変更する
Notepad++のデフォルトのインターフェースが退屈で、カスタマイズが必要だと思われる場合は、サードパーティのソフトウェアやプラグインを使用せずにそれを行うことができます。テーマ、フォントファミリ、フォントサイズ、フォントスタイル、フォントの太さ、フォントの色、背景色などを変更できます。サードパーティのソースからフォントをインストールした場合でも、Notepad++のデフォルトフォントとして使用できます。Settings > Style Configurator]をクリックするだけです。前述のすべてを選択できる画面が表示されます。好みを選択し、同じページのチェックボックスにチェックマークを付けます。それ以外の場合、変更は有効になりません。
4]独自のNotepad++テーマを作成して設定します(Create)
Notepad++のデフォルトのテーマが気に入らない場合は、希望に応じて作成し、デフォルトのテーマとして設定できます。主な要件は、テーマファイルを.xml拡張子で保存し、次のフォルダー内に配置する必要があることです。
C:\Users\user_name\AppData\Roaming\Notepad++\themes
user_nameを実際のユーザー名に置き換えることを忘れないでください。これを行ったら、Settings > Style Configuratorに移動します。[テーマの選択(Select Theme )]ドロップダウンメニュー内にテーマが表示されます。
5]最近開いたファイルをすばやく開き、番号を変更します(Open)
コードでいっぱい(Suppose)のフォルダがあり、特定のファイルを開く必要があるとします。長い道のりを進む必要がある場合は、確かに時間がかかります。このような場合は、[ファイル]をクリックして、最近開いたファイルを確認するだけです。(File )リストには、実際のパスを使用して最大15個のファイルを取得できます。この機能が便利だと思い、「最近開いた」ファイルの数を増やしたい場合は、ここに数を増減するための秘訣があります。[Settings > Preferencesを開きます。[最近のファイル履歴(Recent Files History)]で、番号を変更するオプションが表示されます。
6]ツリービューでファイルを開く
テーマを開発している場合、明らかに複数のファイルがあります。特定のフォルダ内のさまざまなファイルを開いたり閉じたりすることは非常に困難です。この問題を解決するために、Notepad++には、ユーザーがツリービューですべてのファイルとフォルダーを表示するのに役立つFolderasWorkspaceと呼ばれるすばらしい機能があります。左側に特定のフォルダとファイルを開くためのサイドバーが表示されます。フォルダを開くには、[File > Open Folder as Workspace,]をクリックし、ツリービューに表示するフォルダを選択します。
7]フォルダ内のすべてのファイルを一度に開く(Open)
Notepad++でフォルダ内のすべてのファイルを一度に開きたい場合は、2つのことができます。フォルダを開き、すべてのファイルを選択して、Enterキー(Enter)を押すだけです。File > Open Containing Folder > Explorer,]をクリックし、ファイルを選択してEnterキー(Enter)を押します。どちらのアクションも同じタスクを実行します。
8]複数のファイルで単語またはテキストを検索する(Find)
あなた(Suppose)が特定の単語を書くのを間違えたとしましょう。たとえば、 XYZの代わりにABCを記述しました。間違って書かれた単語をすべて見つけるために、一度に1つのファイルを開いてそれらをチェックする必要はありません。代わりに、上記のガイドを使用して、すべてのファイルを一度に開くことができます。次に、Ctrl + F検索(Find )]タブに移動します。次に、検索したいものを書き留めて、 [開いているすべてのドキュメントですべて検索(Find All in All Opened Documents)]ボタンをクリックします。Notepad++ウィンドウの下部に結果が表示されます。ここから、その特定のファイルに移動してエラーを見つけることができます。
9]複数のファイルの単語またはテキストを置き換える(Replace)
特定の単語またはテキストを他の単語に置き換える場合は、複数のファイルで、すべてのファイルをNotepad++で開きます。Ctrl + Hを押して、置換する単語を入力し、指定されたフィールドに新しい単語を入力して、[開いているすべてのドキュメントのすべてを置換(Replace All in All Opened Documents)]をクリックします。すべてのファイルを一度に保存するには、Ctrl + Shift + Sを押します。
10]変更を並べて検索
特定のファイルにほとんど変更を加えていない、または1つのファイルに2つのインスタンスを作成したいとします。これを行うには、並べて配置するファイルを開くか作成するか、別のインスタンスを作成します。次に、タブを右クリックして、[他のビューに複製(Clone to Other View)]を選択します。
10]ファイルを編集不可にする
誤ってボタンを押すことが多い場合は、2つのファイルを並べて配置したときに、特定のファイルを編集したり、他のファイルを編集防止にしたりするのに役立つソリューションがあります。読み取り専用にするファイルのタブを右クリックし、[読み取り専用(Read Only)]を選択します。
Notepad++ホームページ(homepage)(homepage)からダウンロードできます。
ボーナスのヒント: (Bonus Tip)access FTP server using Notepad++することもできます。
Hope you find these Notepad++ tips useful.
Best Notepad++ Tips and Tricks you should use
There are plenty of text edіtors available for prоgrammers, but most of the people often choоse Notepad++ as an alternative to Notepad since it is free, user-friendly and feature-rich. If you are not familiar with Notepad++ for Windows PC, you should know that it is possible to write different languages including .html, .css, .php, .asp, .bash, .js, and more. Here are a few Notepad++ tips and tricks that you may use to get started.
Notepad++ Tips and Tricks
1] Perform certain things automatically
This is probably the most time-saving feature that Notepad++ has, since it will let you do a repeat a task more than once without actually doing it again. You can record a Macro and perform an act automatically. Let’s assume that you want to replace a certain text in different files and save it in a particular format. You just need to record the whole process and play it later whenever you want to perform that task. It is possible to save as many macros as you want. To record a Macro, just head over to the Macro section in the navigation menu of Notepad++.
2] Launch code in a particular browser
Let’s assume that you have written a few lines of code in HTML and CSS. Now, you want to check the look of that page without applying it on a live website. You have two options. First, you can save that code with the respective extension (here it is .html), and open the file in any web browser. Or, you can just launch the code in a particular browser without doing any of this. Just write down your code, select Run > Launch in Firefox/IE/Chrome/Safari. Now, the page will open directly in your desired web browser.
3] Change preference
If you think that the default interface of Notepad++ is boring, and it needs some customization, you can certainly do that without using any third party software or plugin. It is possible to change the theme, font family, font size, font style, font weight, font color, background color, and more. If you have installed a font from third party sources, you can still use it as your default font in Notepad++. To change the preferences, just click on Settings > Style Configurator. You will see a screen, where you can choose everything mentioned earlier. Select your preference and place a tick-mark in the checkbox on the same page. Otherwise, the change will not be effected.
4] Create and set own Notepad++ theme
If you do not like the default themes of Notepad++, you can make one according to your wish and set it as your default theme. The primary requirement is that you have to save the theme file with a .xml extension, and place it inside the following folder:
C:\Users\user_name\AppData\Roaming\Notepad++\themes
Don’t forget to replace user_name with your actual username. Having done this, go to Settings > Style Configurator. You will see the theme inside the Select Theme drop-down menu.
5] Open recently opened files quickly and change the number
Suppose, you have a folder full of your codes, and you need to open a particular file. It will certainly take time if you have to navigate a long path. At such times, you can simply click on File and check your recently opened files. You can get up to 15 files in the list with the actual path. If you think that this feature is useful, and you want to increase the number of “Recently Opened” files, here is a trick to increase or decrease the number. Open Settings > Preferences. Under the Recent Files History, you will get the option to change the number.
6] Open file in the tree view
If you are developing a theme, obviously there are more than one files. It is quite difficult to open and close different files in a particular folder. To solve this problem, Notepad++ has an awesome feature called Folder as Workspace, which helps users to view all the files and folders in the tree view. You can see a sidebar on the left-hand side that will let you open a particular folder and file. To open a folder, click on File > Open Folder as Workspace, and choose the folder that you want to show in a tree view.
7] Open all files in a folder at once
If you want to open all the files in a folder at once in Notepad++, you can do two things. You can simply open a folder, select all the files and hit Enter. Or you can click on File > Open Containing Folder > Explorer, select the files and hit Enter. Both actions will perform the same task.
8] Find word or text in multiple files
Suppose, you have made a mistake in writing a particular word. For instance, you have written ABC instead of XYZ. To find all the wrongly written words, you do not have to open one file at a time and check them. Instead, you can just open all the files at once using the guide mentioned above. Then, press Ctrl + F and go to Find tab. Now, write down what you want to find and hit the Find All in All Opened Documents button. You will get the result in the bottom of your Notepad++ window. From here, you can go to that particular file and find the error.
9] Replace word or text in multiple files
If you want to replace a particular word or text with some other word, in multiple files, open all the files in Notepad++. Press Ctrl + H, type the word you want replaced, and the new word in the given fields and click on the Replace All in All Opened Documents. To save all the files at once, press Ctrl + Shift + S.
10] Find changes side by side
Let’s assume that you have made few changes in a particular file or say you want to make two instances of a single file. To do this, open or create the file that you want to place side by side or make another instance. Then, right-click on the tab and select Clone to Other View.
10] Make a file edit-proof
If you often press buttons by mistake, here is a solution that will help you to edit a particular file and make other files edit-proof when you have placed two files side by side. Right-click on the file’s tab that you want to Read Only and then, select Read Only.
Notepad++ is available for download from its homepage.
Bonus Tip: You can also access FTP server using Notepad++.
Hope you find these Notepad++ tips useful.