notepad

【转载】Notepad++配置Zen Coding

我怕爱的太早我们不能终老 提交于 2019-12-10 17:29:47
原标题:Notepad++配置Zen Coding 为Notepad++安装 Zen Coding 插件 下载 Zen.Coding 解压 将解压所得的文件放入 Notepad++ 程序的安装目录下的plugins文件夹。 重启Notepad++,即可开始使用 Zen Coding。 Zen Coding 用法 首先,我们先学习一下 Zen Coding 的缩写规则 (其实就是CSS选择器) E 元素名 (div, p); E#id 带id的元素 (div#content, p#intro, span#error); E.class 带class的元素 (div.header, p.error.critial). id 和 class 可以连写,如: div#content.column.width; E>N 子元素 (div>p, div#footer>p>span); E+N 兄弟元素 (h1+p, div#header+div#content+div#footer); E*N 多项元素 (ul#nav>li*5>a); E$*N 带序号的元素 (ul#nav>li.item-$*5); 接下来,我们来熟悉 Zen Coding for Notepad++ 的快捷键,也是 Zen Coding 的精髓 【Ctrl+E】 展开缩写(Expand Abbreviation)

notepad++配置Zen Coding

梦想的初衷 提交于 2019-12-10 16:57:17
Notepad++ 是一款无比轻巧便捷的代码编辑工具。它无可挑剔的启动速度,优秀的语法高亮,干净整齐的代码缩进,便捷的括号高亮匹配赢得了无数人的喜爱。 但,其代码自动补全很“鸡肋”,或者说Notepad++根本就没有代码补全功能。平时改点源代码很方便,但是想单独的写点源代码就比较麻烦了,难道要一点点的都敲吗?先上段视频: 怎么样?惊呆了吧。Zen Coding –一款使用仿CSS选择器的语法来快速开发HTML和CSS的插件。它无视了编辑器的自动提示和自动完成,秒杀了你自定义的各种快捷键或者 AHK 的热字符串,以智能简洁高效的缩短输入,带给你超快速地书写各种复杂而枯燥的 HTML 和 CSS 代码的体验。 先举一个复杂的例子:zen- coding 可以把这样的代码:div#header>ul.navigation>li*4>a,变成下面的 HTML 代码: <div id=”header”> <ul class=”navigation”> <li><a href=”"></a></li> <li><a href=”"></a></li> <li><a href=”"></a></li> <li><a href=”"></a></li> </ul> </div> 看到这熟悉的语法结构,会 CSS 的朋友一定会惊声尖叫!最妙的是那个“*4”,直接生成 4 个 li 代码了。没错

notepad++的好用快捷键整理

一曲冷凌霜 提交于 2019-12-10 16:35:37
notepad++的好用快捷键整理 1. 文档切换 ctrl+tab 向右切换文档(当然在文档列表菜单弹出来时,可以用鼠标进行快速选择) ctrl+shift+tab 同上,只是切换方向是向左的 在任意文档中按下鼠标右键(按下后不松开),然后滚动鼠标滚轮,则可以快速选择文档 notepad++文档切换 2. 关闭文档:ctrl+w 3. 查找和替换 ctrl+f 打开查找对话框(大家都知道) ctrl+h 打开替换和查找对话框 F3 找下一个(先使用ctrl+f后,选择一个文档,然后再按F3) shift+F3 找上一个 4. 文本选择: 按列选择文本区块:按住alt,然后点击鼠标并拖动,即可看到效果 notepad++中案列选择文本 文本多选:按住ctrl后可以选择多个文本,选择如果编辑,即是对多处同时进行编辑(该功能需要在设置–>首选项–>编辑–>多列编辑中勾选上“启动(Ctrl+Mouse click/selection)”,这个功能默认是没有启用的) notepad++中文本多选 5. 联想功能 ctrl+回车键 单词联想,只要你的当前文档中出现过就可以联想 ctrl+空格键 函数名联想(由于一般与搜狗拼音的快捷键冲突,所以会失效) ctrl+shift+空格键 函数参数联想 6. 列编辑模式 列编辑模式是很有用的,他是利用了列选择文本区块功能,在选了一个列区块后

notepad++快捷键

老子叫甜甜 提交于 2019-12-10 16:15:05
notepad++也情有独钟,最近发现了一个快捷键,就是选中单词,ctrl+shift+enter。不过现在想知道一个快捷键,假设有三行代码,选中后一般按TAB就可以三行全部缩进. Notepad++绝对是windows下进行程序编辑的神器之一,要更快速的使用以媲美VIM,必须灵活掌握它的快捷键,下面对notepad++默认的快捷键做个整理; 1. 文件相关 快捷键 动作定义 Ctrl-O 打开文件 Ctrl-N 新建文件 Ctrl-S 保存文件 Ctrl-Alt-S 文件另存为 Ctrl-Shift-S 保存所有打开文件 Ctrl-P 打印 Alt-F4 退出程序 Ctrl-Tab 文件标签跳转,跳至下一个打开文件 Ctrl-Shift-Tab 文件标签跳转,跳至上一个打开文件 Ctrl-W 关闭当前文件 2.编辑相关 快捷键 动作定义 Ctrl-C 复制 Ctrl-Insert 同上,复制 Ctrl-Shift-T 复制当前行至剪贴板 Ctrl-X 剪切 Shift-Delete 同上,剪切 Ctrl-V 粘帖 Shift-Insert 同上,粘帖 Ctrl-Z 撤销上一次操作 Alt-Backspace 同上 Ctrl-Y 重做,注:撤销后,重做刚刚撤销的动作 Ctrl-A 全选 Alt-Shift-方向键 或 Alt + 鼠标左键 列选择模式 Ctrl + 鼠标左键

Silverlight 4 - send text to Notepad

╄→гoц情女王★ 提交于 2019-12-10 10:44:45
问题 I try this tutorial http://elegantcode.com/2010/02/20/silverlight-4-com-interop-and-the-cool-stuff-you-can-do-with-it/ I need open Notepad and send text into. I use this code: using (dynamic shell = AutomationFactory.CreateObject("WScript.Shell")) { shell.Run(@"C:\windows\notepad.exe"); //you can open anything shell.SendKeys(txtTextToSend.Text); } When I start aplication the notepad has appeared but there is no text in it. What do I wrong. My system is W7 64bit. Thanks 回答1: The problem is

Remove carriage return from text file

 ̄綄美尐妖づ 提交于 2019-12-08 11:21:09
问题 I have a text file that is | delimited and is over 59,000 line long. How can I remove the carriage returns so each line is one record? Here is what the current file looks like:- Here is what I need it to look like:- Any help would be awesome 回答1: Do a regular expression find/replace like this: Open Replace Dialog Find What: [^|\n\r]\R Replace With: \1 check regular expression click Replace or Replace All It matches OS-linebreaks ( \R ) that are not ( ^ ) preceded by a | or \r or \n . Should

Notepad++中的UTF-8无BOM格式编码

放肆的年华 提交于 2019-12-07 21:44:43
Notepad++中,关于utf-8的编码格式,有两种:以UTF-8无BOM格式编码和以UTF-8格式编码。 很容易给人一种错觉,第一反应会选择以UTF-8格式编码,感觉这种就是平时所说的UTF-8,然而这种编码是默认带BOM的,就是文件头上多了个特殊的标记。 先说结论:建议选择以UTF-8无BOM格式编码 不要BOM 不要BOM 不要BOM BOM格式(Byte Order Mark)是微软特有的,其实UTF-8 的BOM对UFT-8没有作用,是为了支持UTF-16,UTF-32才加上的 如果在Notepad++中选择以UTF-8格式编码,如果一直在windows下,其实也没有什么问题,但是一旦到了其他环境,就可能是乱码,尤其是linux环境,还有Mac本的unix环境。 参考: https://en.wikipedia.org/wiki/Byte_order_mark https://www.zhihu.com/question/20167122 来源: CSDN 作者: zhangSir134 链接: https://blog.csdn.net/java_zhangshuai/article/details/96441521

open associated files like 'notepad ++ tab features' in WPF

∥☆過路亽.° 提交于 2019-12-07 19:31:39
问题 This question is about a WPF application. I would like to open some associated files with my custom application. I found the way to open associated files. but still, I don't know how to handle dupplicated application. For example, if I click 'a.txt2', my app opens it. And I click 'a2.txt2', it also opens another process of my app. I want to get second click info only in the first app, not the execution of my app when associated files are clicked many. It's similar to 'notepad ++' open file to

Why does fprintf behave differently in text mode compared to a properly set carriage return in normal mode?

对着背影说爱祢 提交于 2019-12-07 17:50:27
问题 The following question is more a curiosity than a problem. I stumbled over this question, offering two different answers which seem to be equivalent. But they aren't, what made me thinking. Imagine a system call which echoes two lines: [~,message] = system( 'echo hello && echo world' ); returns: hello world If one wants to write these lines to a .txt -file and open it in notepad, the common approach would be: fid = fopen([pwd '\helloworld.txt'],'w'); fprintf(fid, '%s\n', message); fclose(fid)

vs code使用技巧实际总结

喜欢而已 提交于 2019-12-06 04:58:00
常用的编辑器中,优秀的有:source insight, sublime, notepad++, vs code等。 其中以vs code因其优秀的架构设计(微信中有详细介绍),light and powerful, Concise but rich 。 几个好的插件和配置: 1. 插件(可参考 https://blog.fundebug.com/2018/07/24/vs-extensions/ ) 2. 配置 (1) minimap (2) breadcrumbs (3) F12 (4) shift+F12 来源: https://www.cnblogs.com/atoman/p/11962971.html