notepad

Notepad++配置Markdown

柔情痞子 提交于 2019-12-06 04:21:26
为您的Notepad++编辑器配置Markdown语法环境。 环境配置 1.设置语言为中文 选择设置——首选项——选择左侧矩形框内的常用——界面语言——中文简体。 2.设置字体&&主题 选择设置——语言格式设置——选择主题Obsidian——色彩样式勾选使用全局背景色 字体样式选择微软雅黑——字体大小11——勾选使用全局字体——使用全局字体大小 安装MarkdownViewer++插件 插件——插件管理——找到MarkdownViewer++——Install 导入Markdown语言格式的xml文件 下载地址:https://github.com/Edditoria/markdown-plus-plus 解压markdown-plus-plus-master.zip 选择them-blackborad主题导入 到此,您已成功配置Markdown语法环境。 来源: https://www.cnblogs.com/lijiaji/p/11961550.html

notepad++ 字符处理: 字符前后删除 或 删除未包含字符串的行

心已入冬 提交于 2019-12-06 02:56:55
字符串前后删除 删除str之后的所有字符用,打开替换(Ctrl+H) :str.*$ 删除str之前的所有字符用:^.*str 如果是其他字符就把str替换为其他字符 --------------------------------- 删除未包含内容的行 Ctrl+F打开搜索界面。选择“标记”标签页。打勾“正则表达式“、”标记所在行“、“清除上次标记”。 查找全部^.*str 搜索-书签-删除未标记行。 来源: https://www.cnblogs.com/rain516/p/11958348.html

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

断了今生、忘了曾经 提交于 2019-12-06 02:15:41
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); winopen('helloworld.txt') which returns hello world As notepad obviously is not able to recognize

How to add a space in front of every line in notepad

情到浓时终转凉″ 提交于 2019-12-05 19:01:15
问题 I have a list of data in notepad and want to insert a space in the beginning of each line. Example This is how it looks in the notepad now Number "123" "123" "124" "126" "147" I want it to look like below Number "123" "123" "124" "126" "147" I am sure there is some short cut. Please advice. 回答1: Open your file in Notepad++ Press Ctrl+H to open the Replace window. Change the "Search Mode" to Regular expression. In the "Find what" box, type (\n|^) In the "Replace with" box, type \1 (with your

ubuntu18.4 与pc notepad++ 使用nppfftp

时间秒杀一切 提交于 2019-12-05 15:48:02
首先在linux上部署 vsftpd 安装过程可能有一些问题。我之前的一个文章有所说明。 然后更改配置文件 vsftpd.conf 最简单是开启匿名登录,有时候还要开启root登录,在user文件里面(禁止登陆)。文件路径要更改好,比如匿名的地址或者本地地址。最后在虚拟机里面测试 127.0.0.1 ,如果文件正产,再在pc浏览器输入 虚拟机ip,使用ifconfig可以看到虚拟机的ip。最后如果使用匿名并且不启用ssh加密,就不需要后使用sftp,没有加密就是用ftp,端口使用21。 匿名登录,就是不需要账号,这个时候账号使用 anoonymous 来源: https://www.cnblogs.com/polar-lights/p/11932922.html

VIM: Doesn't VIM 'replace' use of CTRL with ESC?

99封情书 提交于 2019-12-05 10:27:43
问题 It is usually advertised that using VIM alleviates the need of moving the hand away from home row. However, it seems that instead of going to CTRL, I am stretching my hand to ESC all the time. Note: I am a new vim user and I am trying to migrate from Notepad (windows) to VIM. I am asking this question, in case there is some issue in my use or understanding of VIM philosophy. 回答1: When vi was originally written, it was written on this keyboard layout: Note that the Esc is where Tab is on most

开发工具的安装与使用(第二弹)

穿精又带淫゛_ 提交于 2019-12-05 08:34:30
前一篇博文中谈到python开发工具之一notepad++的安装,今天简要说说如何利用notepad++编辑python代码并运行代码。 在此之前,必须提醒一点,仅有notepad++只能完成代码的编辑(当然它也有简单的运行功能),要想运行代码,还要安装python的代码解释器。换句话说,如果想用notepad++来学习python语言,那么需要有notepad++和python代码解释器这两个工具软件;如果选择使用之后将要介绍的Anaconda,那么只需要安装Anaconda就行了,因为Anaconda里面已经附带了python代码解释器。 关于python代码解释器的安装,本文就不详细介绍了,把这个光荣的任务留给其他博主吧。但要提醒一下,解释器安装完成后,在windows操作系统下,一定要记得将解释器的路径添加到诸位计算机的环境变量中,方面以后用来执行代码。还有一点,其实在安装解释器时,python自带的代码编辑器也会一同安装,这个编辑器比notepad++更加精简,所以很少用这个编辑器来做开发任务。 为了测试解释器的路径是否成功添加到环境变量中,一个简单的方法就是打开windows的命令行,在命令行中输入“python”,按下回车键,看看是否返回所安装的python解释器版本号,如下图: 从图中可以看出,笔者的python解释器版本是3.7.4。注意

推荐两款好用的JS格式化工具

孤街浪徒 提交于 2019-12-05 07:26:24
工具一: 直接在Chrome浏览器中,F12,打开Sources栏,找到JS文件,点击下面的花括号即可。 工具二: 使用notepad++ 格式化JS文件。 1.下载 jstool 插件( https://www.sunjw.us/jstool/npp/ ),放入Notepad++\安装目录的plugins位置下,重启即可使用。 2.插件-->JSTool-->JSFormat 来源: https://www.cnblogs.com/zhengna/p/11913621.html

开发工具的安装与使用(第一弹)

↘锁芯ラ 提交于 2019-12-05 06:29:54
工欲善其事,必先利其器。学习C/C++语言时,得有VC++6.0或其他的集成开发环境;学习java语言时,也得有jdk编译器以及趁手的开发工具。 python学习也不例外,必须要有一件得心应手的兵器才能驰骋代码世界,这里介绍两款较为常用的开发工具:notepad++与Anaconda. 今天介绍notepad++的安装 在笔者看来,notepad++是一个大杂烩,它支持多种编程语言,是我们学习一门计算机语言的练手工具。换句话说,在我们学习编程语言初期时,可以用它来练练手,验证一些基础知识和算法小例子。而一旦你的代码能力提升到一个阶段,这个过于精简的开发环境将难以满足多功能的需求。 下面简单介绍notepad++的安装与使用 第一步:百度搜索“notepad++” 第二步:点击其中一条搜索结果(笔者选择的是第二条结果),下载安装程序 上图显示该软件有众多版本,一般建议版本不要最新,防止有不兼容、不稳定等现象发生 根据自己计算机的位数,选择相应的32位或64位版本,点击对应位数版本下的installer 再点击保存文件,等待下载完成 第三步:找到下载的安装程序(笔者的在桌面上),双击运行,按照它的提示进行一步步安装(多数情况下点击“下一步”即可,可以自己选择安装位置) 第四步:双击安装后生成的程序,界面如下 默认界面是白色的,由于笔者后期更改过颜色,所以显示的是绿色的。

WIN7快速打开hosts方法

那年仲夏 提交于 2019-12-04 19:58:19
WIN7快速打开hosts方法 1直接运行 C:\Windows\System32\drivers\etc\hosts 浏览选择notepad++打开即可 2打开notepad++ 打开 C:\Windows\System32\drivers\etc\hosts 浏览选择notepad++打开即可 来源: https://www.cnblogs.com/newmiracle/p/11880468.html