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.
    • Alan KilbornA
      Alan Kilborn @hycmos
      last edited by Alan Kilborn

      @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.

      hycmosH 1 Reply Last reply Reply Quote 6
      • hycmosH
        hycmos @Alan Kilborn
        last edited by

        @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.

        Michael VincentM 1 Reply Last reply Reply Quote 0
        • Michael VincentM
          Michael Vincent @hycmos
          last edited by

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

          hycmosH 1 Reply Last reply Reply Quote 0
          • hycmosH
            hycmos
            last edited by

            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
            • hycmosH
              hycmos @Michael Vincent
              last edited by

              @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
              • OverlordBRO
                OverlordBR @hycmos
                last edited by

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

                hycmosH 2 Replies Last reply Reply Quote 0
                • hycmosH
                  hycmos @OverlordBR
                  last edited by

                  @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
                  • hycmosH
                    hycmos @OverlordBR
                    last edited by

                    @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
                    • hycmosH
                      hycmos
                      last edited by

                      I was banned?

                      1 Reply Last reply Reply Quote 0
                      • hycmosH
                        hycmos
                        last edited by

                        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
                        • First post
                          Last post
                        The Community of users of the Notepad++ text editor.
                        Powered by NodeBB | Contributors