topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Thursday March 28, 2024, 10:34 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Last post Author Topic: The Non-Notepad(MS) Thread!  (Read 34956 times)

dr_andus

  • Supporting Member
  • Joined in 2012
  • **
  • Posts: 851
    • View Profile
    • Dr Andus's toolbox
    • Donate to Member
Re: The Non-Notepad(MS) Thread!
« Reply #50 on: August 02, 2013, 01:47 PM »
No I hadn't. But that is a standalone editor (right?).

Yeah. I thought I'd just mention it, in case it hits the spot.

Nod5

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 1,169
    • View Profile
    • Donate to Member
Re: The Non-Notepad(MS) Thread!
« Reply #51 on: August 03, 2013, 02:45 AM »
Well it turns out notepad2-mod autocomplete does work in .ahk files already. :up: I mistakenly thought autocomplete used a fixed dictionary (external to the file being edited) and had only tested it in with a blank .ahk file - which of course didn't work. In fact, the autocomplete uses all commands already entered in the document as dictionary.

Nod5

  • Supporting Member
  • Joined in 2006
  • **
  • Posts: 1,169
    • View Profile
    • Donate to Member
Re: The Non-Notepad(MS) Thread!
« Reply #52 on: August 04, 2013, 03:21 PM »
Speaking of Notepad2, here is an AutoHotkey script I made that lets you toggle three different settings by clicking your middle mouse button in different parts of an open Notepad2 window.
Code: Autohotkey [Select]
  1. #IfWinActive, ahk_class Notepad2
  2. Mbutton::
  3. WinGetPos,,,w,h, A
  4. MouseGetPos,x,y,,contr
  5. if contr not in SysListView321,msctls_statusbar321
  6.  return
  7. if ( h - y < 60 )
  8. {
  9.  send !s   ;mbutton near lower edge: toggle statusbar
  10.  send oo{enter}
  11. }
  12. else if ( x < w / 2 )
  13.  send ^+n   ;mbutton left half: toggle line numbering
  14. else if (w - x < w / 2 )
  15.  send ^w        ;mbutton right half: toggle line wrap
  16. return

antekgla

  • Participant
  • Joined in 2011
  • *
  • Posts: 75
    • View Profile
    • SRTFilter
    • Donate to Member
Re: The Non-Notepad(MS) Thread!
« Reply #53 on: August 17, 2013, 08:11 AM »
One more vote to Metapad  :)

Cheers!
SRTFilter Automatic Subtitle Editor & Renamer
Dualcopy If you use Teracopy or Fastcopy this can be interesting   - My N.A.N.Y 2018 Entry