• Login
Community
  • Login

The best way to boycott NP++ is to use another better Text Editor: CudaText

Scheduled Pinned Locked Moved Boycott Notepad++
21 Posts 6 Posters 6.1k Views
Loading More Posts
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • H
    hycmos @Alan Kilborn
    last edited by Nov 10, 2019, 3:49 PM

    @Alan-Kilborn said in The best way to boycott NP++ is to use another better Text Editor: CudaText:

    @hycmos

    I think you’ve made your point…and I agree with @Ekopalypse…it would be best to take your discussion about Cuda to, well, umm, a Cuda-specific site??

    Dear Sir,
    why this site can talk about bote notepad++ and political issue,
    can not talk a new better editor CudaText?
    well…
    Freedom? Speech of free?

    A 1 Reply Last reply Nov 10, 2019, 6:55 PM Reply Quote -1
    • A
      Alan Kilborn @hycmos
      last edited by Alan Kilborn Nov 10, 2019, 6:56 PM Nov 10, 2019, 6:55 PM

      @hycmos

      It’s not a matter of “free speech”, it is a matter of discussing things of interest to a specific group. Since the “group” here in question is people interested in Notepad++, they really aren’t interested in other things. If they were, they’d go to places where those specific things are discussed. Do you understand now?

      And…we don’t talk about political issues here…unless we are forced to by certain individuals.

      H 1 Reply Last reply Nov 10, 2019, 11:52 PM Reply Quote 6
      • H
        hycmos @Alan Kilborn
        last edited by Nov 10, 2019, 11:52 PM

        @Alan-Kilborn
        Acctualy, The best way to boycott NP++ is to tell others that there is another better editor than NP++.
        and show them how good the new editor is! tell them how to configure it to do better than NP++.

        So it acctuly is the right place to discuss this , especially in this forum “Home/Boycott Notepad++” but not “Home/general topic”.
        It is a matter of Notepad++.

        BTW, I have discussed many issues on CudaText with other people in other forum of some specific places. and here, this forum, I just share some ideas about CudaText which got from those places.

        M 1 Reply Last reply Nov 11, 2019, 12:02 AM Reply Quote 0
        • M
          Michael Vincent @hycmos
          last edited by Nov 11, 2019, 12:02 AM

          @hycmos
          I looked at cuda and unless I missed it there was no built in Perl lexer. That’s a non-starter for me.

          H 1 Reply Last reply Nov 11, 2019, 12:25 AM Reply Quote 0
          • H
            hycmos
            last edited by Nov 11, 2019, 12:03 AM

            And…we don’t talk about political issues here…unless we are forced to by certain individuals.
            Yes, I also dont want to talk about political issues here.
            but NP++ 7.8.1 forces me (maybe some others) to do.

            1 Reply Last reply Reply Quote -2
            • H
              hycmos @Michael Vincent
              last edited by Nov 11, 2019, 12:25 AM

              @Michael-Vincent said in The best way to boycott NP++ is to use another better Text Editor: CudaText:

              @hycmos
              I looked at cuda and unless I missed it there was no built in Perl lexer. That’s a non-starter for me.

              Sir,
              1)go to http://uvviewsoft.com/cudatext/download.html
              2)click “Download add-ons pack”
              3)unzip this downloaded file “CudaText_addons.zip”, find folder “lexer”, you can get “lexer.Perl.zip” in it.
              4)then in Cuda Menu, click File–>Open file…, open this “lexer.Perl.zip” to install this lexel
              5) restart Cuda, enjoy it.
              http://synwrite.sourceforge.net/forums/viewtopic.php?f=4&t=2316

              1 Reply Last reply Reply Quote 0
              • O
                OverlordBR @hycmos
                last edited by Nov 11, 2019, 10:03 AM

                @hycmos Well, sorry but i don’t wanna boycott NP++
                Is a amazing editor and i’m happy with it.

                H 2 Replies Last reply Nov 11, 2019, 3:57 PM Reply Quote 0
                • H
                  hycmos @OverlordBR
                  last edited by Nov 11, 2019, 3:57 PM

                  @OverlordBR said in The best way to boycott NP++ is to use another better Text Editor: CudaText:

                  @hycmos Well, sorry but i don’t wanna boycott NP++
                  Is a amazing editor and i’m happy with it.

                  welcome.
                  Thanks you very much for your information.
                  anyway, you can try Cuda,
                  maybe you will happy with it.
                  😊

                  1 Reply Last reply Reply Quote 0
                  • H
                    hycmos @OverlordBR
                    last edited by Nov 11, 2019, 6:20 PM

                    @OverlordBR said in The best way to boycott NP++ is to use another better Text Editor: CudaText:

                    @hycmos Well, sorry but i don’t wanna boycott NP++
                    Is a amazing editor and i’m happy with it.

                    welcome.
                    Thank you for your information.
                    You can try Cuda.
                    Maybe You will be happy with it.

                    1 Reply Last reply Reply Quote 0
                    • H
                      hycmos
                      last edited by Nov 13, 2019, 4:15 AM

                      I was banned?

                      1 Reply Last reply Reply Quote 0
                      • H
                        hycmos
                        last edited by Nov 19, 2019, 6:51 AM

                        well, It seems I can post again.
                        Thank the freedom.

                        So Now, I show you a wonderful function in CudaText.
                        after study CudaText some days, I write my first plugin for the Cudatext.

                        [Share My Idea] Plugin to get alt+C function same as NP++:
                        function: column mode to insert increasing leading number at everyline (Same as Notepad++)

                        1. you can find menu Plugins–> Make Plugin
                        2. Click it
                        3. Plugname=MyaltC,module name=MyaltC,items=MyaltC>run
                        4. Click “OK”
                        5. At line 27, find “def run(self)”
                        6. replace all of def run(self) with:
                        def run(self):
                                  cnt = ed.get_carets()
                                  altCnum=dlg_input_ex(4, 'Number be inserted',
                                        'start'   , text1="0", label2="Step by", text2="1",
                                        label3="Leading Char", text3="",label4="Following Char", text4="")
                                  if altCnum==None:return()
                                  i=0
                                  for a_cnt in cnt:
                                      altCtxt=int(altCnum[0])+i*int(altCnum[1])
                                      altCtxt=altCnum[2]+str(altCtxt)+altCnum[3]
                                      a_caret=a_cnt[0]
                                      if a_cnt[0]>a_cnt[2]:
                                          a_caret=a_cnt[2]
                                      ed.insert(a_caret, a_cnt[1], altCtxt)
                                      i=i+1
                        

                        only 15 lines!!!
                        could not believe!!!

                        1. Now restart CudaText. you can find new menu in “Plugins–>MyaltC”, even you can assign a hotkey ‘alt+C’ to this.
                        2. get the Alt-C function same as many editor :D :D
                          Thank too the Cudatext’s power python API,
                          this function is more powerful than NP++'s Alt+C. This can add the following char.

                        It is so easy to implement this function in Cudatext. more powerful! So easy!
                        ByNP1.png

                        1 Reply Last reply Reply Quote 0
                        20 out of 21
                        • First post
                          20/21
                          Last post
                        The Community of users of the Notepad++ text editor.
                        Powered by NodeBB | Contributors