notepad++

Sort case insensitive in recent versions of Notepad++

蓝咒 提交于 2021-01-27 02:49:25
问题 How can you do a case-insensitive sort in recent versions of Notepad++ (i.e. >= 6.5)?. I'm aware of the old way of using TextFX, however Notepad++ now has the built-in "Line Operations", but these seem to be case sensitive. 回答1: You can still use the TextFX Characters plugin in recent versions of Notepad++ (tested under version 6.5.5): Click Plugins/Plugin Manager / Show Plugin Manager Under Available find TextFX Characters Click Install Select rows to be sorted. Click TextFX/TextFX Tools

Use Notepad++ as HEX-Editor

血红的双手。 提交于 2021-01-21 08:44:28
问题 I'm using Notepad++, version 7.8.5 64bit on Windows 10. I'd like to use it as a Hex Editor. I open a binfile, but Notepad shows it to me as a text with strange characters. In order to visualize the Hex-numbers, I select a part of the text, go and click on the voice Plugins/Converter/ASCII-->HEX and it shows me the hex-numbers of the selected part. Now I'd like to see the whole file in hex, but it doesn't work. It seems that selecting some parts it works, other parts it doesn't. I need to

史上最全软件开发|程序员必备的工具集

瘦欲@ 提交于 2021-01-11 15:23:38
史上最全软件开发|程序员必备的工具集 软件开发程序员在整个产品研发的过程中起着很重要的作用, 由于经常研究各种技术,他不会精确记得所有语言代码的语法和API,他觉得没有Google和百度,几乎没法工作。他记的只是一个Key,一个如何找寻答案的索引,而不是全部 。正所谓 “工欲善其事必先利其器”我们程序员也是一样,选择一个好工具可以大大提升开发效率,下面是我使用的一些并且觉得很不错的软件,和大家分享下。 最后还会给大家介绍一款我最近在 测试全流程一站式的测试神器。 一、办公类: 软件开发工程师常用工具: 1.1、OneNote: https://www.onenote.com/download/ 微软office自带的一款类似笔记本的软件,我一般所有的学习笔记都是放在上面的,跟有道云笔记类似,推荐使用,华为研发人员大多都是用这个,谁用谁知道 1.2、Teamviewer:这是一款非常好用的多人回忆演示等集一体的软件,类似于华为内部使用的Espace软件 1.3、腾讯文档: https://docs.qq.com/desktop 1.4、Processon免费作图: https://www.processon.com/ 二、研发类: 2.1、Github: https://github.com/ 适合团队开发人员之间共同开发时使用 2.2、SVN: https:/

UnicodeDecodeError: 'utf-8' codec can't decode byte 0xd3 in position 259: invalid con...

江枫思渺然 提交于 2021-01-11 03:11:01
0x00 问题引出:   最近在练习python爬虫的时候,需要爬取网页。 在使用urllib获取reqest的response的时候,还要进行解码。 见语句: content = urllib.request.urlopen(request).read().decode() 当执行该语句的时候,会造成异常: UnicodeDecodeError: 'utf-8' codec can't decode byte 0xd3 in position 259: invalid continuation byte 0xd3 问题分析 该情况是由于出现了无法进行转换的 二进制数据 造成的,可以写一个小的脚本来判断下,是整体的字符集参数选择上出现了问题,还是出现了部分的无法转换的二进制块: #python3 #以读入文件为例: f = open("data.txt","rb")#二进制格式读文件 while True: line = f.readline() if not line: break else : try : #print(line.decode('utf8')) line.decode('utf8' ) except : print(str(line))  1.如果是字符集出现错误,建议多选择几种字符集测试一下: 选择的经验是: 如果是爬取到的网页文件

How to edit 'column select' shortcut in Sublime text 3 portable

空扰寡人 提交于 2021-01-04 08:51:00
问题 I am a novice to Sublime text. Previously I used notepad++. I use column selection frequently. In notepad++ it comes to me handy with alt + left mouse click which I can drag up to my wished selection. In Sublime text, it is shift + right mouse click and drag up to wished selection for Windows. I want to change it to alt + left mouse click as I have used it in notepad++. I tried searching in preferences > key bindings in sublime text. But couldn't find mouse-key mappings there. I am using

How to edit 'column select' shortcut in Sublime text 3 portable

自作多情 提交于 2021-01-04 08:50:10
问题 I am a novice to Sublime text. Previously I used notepad++. I use column selection frequently. In notepad++ it comes to me handy with alt + left mouse click which I can drag up to my wished selection. In Sublime text, it is shift + right mouse click and drag up to wished selection for Windows. I want to change it to alt + left mouse click as I have used it in notepad++. I tried searching in preferences > key bindings in sublime text. But couldn't find mouse-key mappings there. I am using

How to vertically align comma separated values in Notepad++?

杀马特。学长 韩版系。学妹 提交于 2020-12-30 04:58:23
问题 As shown in the picture " Before " below, each column separated by comma is not aligned neatedly. Is there any method to align each column vertically like the display effect in Excel? The effect I wish is shown in the picture " After ". Thanks to @Martin S , I can align the file like the picture " Method_1 ". As he has mentioned, some characters still cannot align well. I was wondering if this method could be improved? 回答1: You can use the TextFX plugin: Edit > Line Up multiple lines by ...

How to vertically align comma separated values in Notepad++?

↘锁芯ラ 提交于 2020-12-30 04:56:41
问题 As shown in the picture " Before " below, each column separated by comma is not aligned neatedly. Is there any method to align each column vertically like the display effect in Excel? The effect I wish is shown in the picture " After ". Thanks to @Martin S , I can align the file like the picture " Method_1 ". As he has mentioned, some characters still cannot align well. I was wondering if this method could be improved? 回答1: You can use the TextFX plugin: Edit > Line Up multiple lines by ...

How to vertically align comma separated values in Notepad++?

孤人 提交于 2020-12-30 04:56:23
问题 As shown in the picture " Before " below, each column separated by comma is not aligned neatedly. Is there any method to align each column vertically like the display effect in Excel? The effect I wish is shown in the picture " After ". Thanks to @Martin S , I can align the file like the picture " Method_1 ". As he has mentioned, some characters still cannot align well. I was wondering if this method could be improved? 回答1: You can use the TextFX plugin: Edit > Line Up multiple lines by ...