notepad

使用notepad++远程编辑Linux文档

老子叫甜甜 提交于 2019-12-20 21:24:19
上一篇中,我写了如何使用使用ftp服务器实现很方便的通信,这一篇我分享一个使用notepad++的一个NPPFTP插件远程编辑Linux中的文档的小技巧。 首先要确保你的Linux的ftp服务已经打开,详情请参考我的上一篇博客。 如果你的notepad++是64位的话,需要手动从网上下载插件。下载地址:https://github.com/ashkulz/NppFTP/releases/download/v0.27.1/NppFTP-x64.zip 下载解压之后,把bin目录的.dll文件复制到notepad++的plugins文件夹内,然后重启notepad++即可。 在[插件]菜单中,会找到NppFTP选项,点击[show NppFTP window] 然后打开设置,输入你的信息即可 然后点击close 这时你会发现最左边的那个图标亮了 点开它,就可以连接上Linux的你所指定的目录的文件了 大功告成,接下来你就可以任意的在代码的海洋中遨游了!!! 来源: https://www.cnblogs.com/caotao0918/p/9965999.html

Notepad++的tab设置为四个空格

拟墨画扇 提交于 2019-12-20 11:08:51
参考: https://www.cnblogs.com/jyfootprint/p/9409934.html 1.Python使用缩进来组织代码块,坚持使用4个空格的缩进。 在文本编辑器中,需要设置把Tab自动转换为4个空格,确保不混用Tab和空格。 在7.1版本以前 设置->首选项->制表符设置 右侧,转为空格,勾选上 在7.1版本以及以后 设置->首选项->Language 勾选Repalce by space 如下图: 来源: https://www.cnblogs.com/SnowDogLove/p/11095463.html

Null Reference exception in C#

谁说胖子不能爱 提交于 2019-12-20 04:34:24
问题 I'm experiencing "null reference exception" when I'm attempting to return a value from a structure. here is the code: AssetItem item = new AssetItem(); item = initModified(); bool found = false; int index = getIndex(barcode); string modifiedFile = filepath + "Modified\\" + dir + "\\" + index + ".asdt"; if(File.Exists(modifiedFile)) { using(StreamReader reader = new StreamReader(modifiedFile)) { string line = reader.ReadLine(); while(line.Trim()!="") { string[] split = line.Split(','); if

To Access Notepad, calculator through asp.net

醉酒当歌 提交于 2019-12-20 04:27:32
问题 I m trying to open Notepad, Calculator in button click in asp.net with code behind C#. I tried with the code System.Diagnostics.Process.Start("c:\\windows\\system32\\notepad.exe"); this is working fine in local system but not working in the Server. I even tried with the javascript function executeCommands(inputparms) { alert('ff'); var oShell = new ActiveXObject("Shell.Application"); var commandtoRun = "C:\\Winnt\\Notepad.exe"; if (inputparms != "") { var commandParms = document.form1

Line breaks using dlmcell in Matlab - shows up in Notepad++ but not Notepad

冷暖自知 提交于 2019-12-20 04:21:18
问题 I am using the function dlmcell in Matlab to output text. I want text on a new line each time I append using dlmcell. When I open my written document in Notepad++, each snippet of text is on a new line as I want it. However, opening it in Notepad that comes with windows, everything is on the same line. Can somebody tell me why this is, and how to fix it? 回答1: I'm assuming you're using the string \n to declare a new line in your output. For Notepad++ this is sufficient, because it interprets a

分享我如何活用notepad++

人走茶凉 提交于 2019-12-17 20:40:47
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> 小述 用了notepad++后,ultraedit,noteplus就永远地从我电脑上踪影无寻了。个人的体会是notepad++的易用性和功能强大性方面,两者是要逊色了。 一个文本处理的例子 现要将如下文本(表的脚本): 处理成如下文本(对象的属性): 第1步 删除前导引号之前的内容 1)光标移到最后一行"remark"前一个引号的后面,即"|remark"; 2)按信alt列选择键,拖动鼠标进行区块选择,如下图所示: 选择后,按delete删除选择的区块,处理后形如: 第2步 删除r后导引号之后的内容 按ctrl+H调出查找替换的对话框: 1)查找模式选择"正则表达式" 2)查找目标设置为 ".* 3)替换为设置为 ; 如下所示: 点击全部替换,替换结果为: 第3步 字段转换为属性名 将形如user_id的表字段转换为userId的属性名。这个得通过notepad++的一个插件,名曰:textFX. 通过:插件->plugin manager->show plugin manager 在available列表中找到这个textFX,然后Install,即完成插件的下载及安装了。 安装完这个插件后,菜单栏多了一个textFX。选择需要转换的文本,然后通过: TextFX->TextFX characters-

notepad++

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-17 20:40:22
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> 最近在做前台设计,重量级的IDE实在不适合我。 于是就试了下Notepad++, 之前只是用它来代替Windows的记事本。所以这次才是真正的接触Notepad++的强大功能。 最值得一提的就是TextFX插件,默认是安装在Notepad++中的,下面介绍一些具体的技巧。其中有一些是在网上看到的,不过我认为很值得再提一 下。 1. 删除程序行号或者首字 TextFX > TextFX Tools > Delete Line Numbers or First word 2. 删除程序空行 TextFX > TextFX Edit > Delete Blank Lines TextFX > TextFX Edit > Delete Surplus Blank Lines 3. 改变字符大小写 TextFX > TextFX Characters, 可以选择如下几种形式: UPPER CASE 全部大写 lower case 全部小写 Proper Case 首字大写 Sentense case. 句子模式 iNVERT cASE 首字小写,其他大写 4. 整行移动 选择要移动的一行,按Ctrl+Shift+上箭头,或者Ctrl+Shift+下箭头 5. 整理xml文本格式。这个功能不错

在notepad++ 中添加Java,xml 。。插件

ぃ、小莉子 提交于 2019-12-17 20:07:35
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> 直接在插件扩展中安装 下载Notepad++并安装NppExec插件。 插件--->Plugin Manager--->show Plugin Manager--->安装NppAStyle插件。 自己下载dll插件 或者直接下载NppAStyle插件。登录NppAStyle网站下载,网址: http://sourceforge.net/projects/nppastyle/files/ 我们选择下载NppAStyle_bin_0.10.02.14.zip这个文件。 解压 下载后我们打开这个压缩文件,发现有两个文件夹ansi和unicode(ansi是标准编码,支持语言少;unicode是通用编码,支持更多的语言)。 打开unicode文件夹,将里面的NppAStyle.dll解压出来,将NppAStyle.dll放置到Notepad++安装目录下的plugins文件夹下。 重启Notepad++看NppAStyle是否安装成功,看到如图所示的信息就说明安装成功。 配置NppAStyle。 点击菜单栏中的"插件"--->"NppAStyle"--->"options",在代码风格中选择java。 点击菜单栏中的"插件"--->"NppAStyle"--->"Format code"(或者按快捷键Alt+f)

Notepad++格式化JSON的方法

℡╲_俬逩灬. 提交于 2019-12-17 19:47:52
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> 有时我们会遇到一大串的json格式的字符串或者信息,如何快速并有结构的将JSON类型在编辑器中查看呢? 现在本文介绍用Notepad++查看JSON的方法。 本文这里选取一段JSON格式的内容 在窗口上找到"插件"选项下的----"Plugin Manager"----然后打开右边的第一个选项 在弹出层中找到"JSON Viewer"选项,将选项勾选上,然后点击下面的"Install"选项 现在就在安装JSON插件 安装完成后,选中你需要格式化的JSON内容,然后点击上面的"插件"选项,这是我们可以看到之前没有的"JSON Viewer"选项,然后选中----"Format JSON"选项 选完后我们可以很清楚的看到JSON格式的内容变得很有结构了. 来源: oschina 链接: https://my.oschina.net/u/1177077/blog/514079

How to make Notepad to save text in UTF-8 without BOM?

巧了我就是萌 提交于 2019-12-17 02:33:10
问题 I have a CSV file with special accents and saving it in Notepad by selecting UTF-8 encoding. When I read the file using Java, it reads the BOM characters too. So I want to save this file in UTF-8 format without appending a BOM initially in Notepad. Otherwise is there any built-in class in Java that eliminates the BOM characters that present at beginning, when reading the contents in a file? 回答1: Use Notepad++ - free and much better than Notepad. It will help to save text without BOM using