Page 1 of 1

There is software like notepad++ in Cento7?

Posted: 2019/11/02 10:15:20
by joe.zhao
notepad++ can open multiple files at the same time, and when you edit the files, even if you don't save them, close Notepad + + and then reopen them, the files are still in the editing state before you close them.
I want that function in Centos,any advice?thx! :D

Re: There is software like notepad++ in Cento7?

Posted: 2019/11/02 13:36:12
by TrevorH
https://itsfoss.com/notepad-alternatives-for-linux/

Code: Select all

[root@centos7 ~]# yum list notepad\* scite\* geany\* sublime\* kate\* atom\* 
Loaded plugins: priorities
Available Packages
AtomicParsley.x86_64                                                   0.9.5-2.el7.nux                                       nux-dextop
AtomicParsley-debuginfo.x86_64                                         0.9.5-2.el7.nux                                       nux-dextop
atomic.x86_64                                                          1:1.22.1-29.gitb507039.el7                            extras    
atomic-registries.x86_64                                               1:1.22.1-29.gitb507039.el7                            extras    
atomicapp.noarch                                                       0.6.3-1.el7                                           epel      
geany.x86_64                                                           1.31-3.el7                                            epel      
geany-devel.x86_64                                                     1.31-3.el7                                            epel      
geany-libgeany.x86_64                                                  1.31-3.el7                                            epel      
geany-plugins-addons.x86_64                                            1.31-4.el7                                            epel      
geany-plugins-autoclose.x86_64                                         1.31-4.el7                                            epel      
geany-plugins-automark.x86_64                                          1.31-4.el7                                            epel      
geany-plugins-codenav.x86_64                                           1.31-4.el7                                            epel      
geany-plugins-commander.x86_64                                         1.31-4.el7                                            epel      
geany-plugins-common.x86_64                                            1.31-4.el7                                            epel      
geany-plugins-defineformat.x86_64                                      1.31-4.el7                                            epel      
geany-plugins-geanyctags.x86_64                                        1.31-4.el7                                            epel      
geany-plugins-geanydoc.x86_64                                          1.31-4.el7                                            epel      
geany-plugins-geanyextrasel.x86_64                                     1.31-4.el7                                            epel      
geany-plugins-geanygendoc.x86_64                                       1.31-4.el7                                            epel      
geany-plugins-geanyinsertnum.x86_64                                    1.31-4.el7                                            epel      
geany-plugins-geanylatex.x86_64                                        1.31-4.el7                                            epel      
geany-plugins-geanymacro.x86_64                                        1.31-4.el7                                            epel      
geany-plugins-geanyminiscript.x86_64                                   1.31-4.el7                                            epel      
geany-plugins-geanynumberedbookmarks.x86_64                            1.31-4.el7                                            epel      
geany-plugins-geanypg.x86_64                                           1.31-4.el7                                            epel      
geany-plugins-geanyprj.x86_64                                          1.31-4.el7                                            epel      
geany-plugins-geanyvc.x86_64                                           1.31-4.el7                                            epel      
geany-plugins-geniuspaste.x86_64                                       1.31-4.el7                                            epel      
geany-plugins-git-changebar.x86_64                                     1.31-4.el7                                            epel      
geany-plugins-keyrecord.x86_64                                         1.31-4.el7                                            epel      
geany-plugins-lineoperations.x86_64                                    1.31-4.el7                                            epel      
geany-plugins-lipsum.x86_64                                            1.31-4.el7                                            epel      
geany-plugins-overview.x86_64                                          1.31-4.el7                                            epel      
geany-plugins-pairtaghighlighter.x86_64                                1.31-4.el7                                            epel      
geany-plugins-pohelper.x86_64                                          1.31-4.el7                                            epel      
geany-plugins-pretty-printer.x86_64                                    1.31-4.el7                                            epel      
geany-plugins-projectorganizer.x86_64                                  1.31-4.el7                                            epel      
geany-plugins-sendmail.x86_64                                          1.31-4.el7                                            epel      
geany-plugins-shiftcolumn.x86_64                                       1.31-4.el7                                            epel      
geany-plugins-spellcheck.x86_64                                        1.31-4.el7                                            epel      
geany-plugins-tableconvert.x86_64                                      1.31-4.el7                                            epel      
geany-plugins-treebrowser.x86_64                                       1.31-4.el7                                            epel      
geany-plugins-updatechecker.x86_64                                     1.31-4.el7                                            epel      
geany-plugins-xmlsnippets.x86_64                                       1.31-4.el7                                            epel      
geany-themes.noarch                                                    1.27-1.el7                                            epel      
kate.x86_64                                                            4.10.5-6.el7                                          base      
kate-devel.i686                                                        4.10.5-6.el7                                          base      
kate-devel.x86_64                                                      4.10.5-6.el7                                          base      
kate-libs.i686                                                         4.10.5-6.el7                                          base      
kate-libs.x86_64                                                       4.10.5-6.el7                                          base      
kate-part.i686                                                         4.10.5-6.el7                                          base      
kate-part.x86_64                                                       4.10.5-6.el7                                          base      
scite.x86_64                                                           3.5.1-1.el7                                           epel
Ignore the ones that match the pattern but are not the editor in question!

Re: There is software like notepad++ in Cento7?

Posted: 2019/11/03 09:31:01
by jlehtone
joe.zhao wrote:
2019/11/02 10:15:20
edit the files, even if you don't save them, close Notepad + + and then reopen them, the files are still in the editing state
That means that
1. the program does save the unsaved buffers on "close event", with temporary names
2. the program does on "file open" check for the existence of temporary version and loads that instead

That may feel convenient, but I'd rather adopt a different workflow.

Re: There is software like notepad++ in Cento7?

Posted: 2019/11/04 12:37:49
by benyaminl
You can use vs code and use rpm repo from vs code, they will save the file temp when you work on workspace, but I against it if you always work aways from plug charger(laptop or notebook), I prefer nvim and vim family rather than it. :v :D :D :D

Re: There is software like notepad++ in Cento7?

Posted: 2019/11/04 14:13:46
by nouvo09
Just one reply:

vi or wim can do everything you want. You just need to read the help.

Re: There is software like notepad++ in Cento7?

Posted: 2020/01/12 21:19:35
by superfrog73
I use NPP at work and wanted that functionality at home too. Didn't take too long to Google, but through WINE, you can use NPP and it's really easy to install. Found directions here https://snapcraft.io/install/notepad-plus-plus/centos, but the Google search came back with multiple hits. This one worked for me.

Actually set it up as my default GUI text editor. It appears to function the same as on Windows: Multiple documents and formats, stores edits w/o directed save, and has most if not all of the same plug ins.

Re: There is software like notepad++ in Cento7?

Posted: 2020/01/22 22:55:49
by summitflier
notepad++ does run fine under wine.

Re: There is software like notepad++ in Cento7?

Posted: 2020/02/24 21:30:29
by ron7000