Search found 27 matches

by Laps
Fri Jan 08, 2021 11:19 am
Forum: Scripts & Packages
Topic: Command-line Highlights, Aliases, Variables Package (Screenshots)
Replies: 2
Views: 7972

Re: Command-line Highlights, Aliases, Variables Package (Screenshots)

This is awesome, thanks for sharing! However, I'm running into an issue with aliases when running the package I just downloaded from this page (looks like it's Alias version 1.3 from 3/26/2020). I'm trying to make an alias that utilizes the # matcher, but it just throws an error - see paste below. I...
by Laps
Wed Dec 30, 2020 7:54 am
Forum: Help Forum
Topic: Keyboard shortcut to close or switch away from Script Editor window
Replies: 6
Views: 5715

Re: Keyboard shortcut to close or switch away from Script Editor window

SlySven wrote:
Fri May 15, 2020 5:54 am
I know it might sound silly but doesn't cmd+e from the editor also take you back to the main screen. I thought I saw that recently when I was looking at all the short-cuts in various places...
Hmm - that doesn't work for me using Mudlet 4.10.1 on a Macbook with macOS 10.13.6 (High Sierra).
by Laps
Fri May 08, 2020 8:20 am
Forum: Help Forum
Topic: How to prevent input command echo with alias?
Replies: 14
Views: 9737

Re: How to prevent input command echo with alias?

It turns out there's an event named sysDataSendRequest which is called for every outbound command actually sent to the MUD! I can almost get exactly the behavior I'm going for by disabling the Show the text you sent setting, and adding the script below to subscribe to that event and print it out :) ...
by Laps
Fri May 08, 2020 7:52 am
Forum: Help Forum
Topic: Searching command history without arrow keys (like ctrl+r for terminal)
Replies: 0
Views: 5275

Searching command history without arrow keys (like ctrl+r for terminal)

I love how I can type in a partial command into the command line, then hit the up arrow to peruse previous commands that start with the same text I typed. However, I'd much prefer to do this without needing to find the arrow key. My terminal muscle memory always has me reaching for ctrl+r (on Mac) -...
by Laps
Fri May 08, 2020 7:42 am
Forum: Help Forum
Topic: Keyboard shortcut to close or switch away from Script Editor window
Replies: 6
Views: 5715

Re: Keyboard shortcut to close or switch away from Script Editor window

Aha, didn't realize that existed! On Mac it's cmd+` (that's a back-tick).
by Laps
Fri May 08, 2020 7:15 am
Forum: Help Forum
Topic: Keyboard shortcut to close or switch away from Script Editor window
Replies: 6
Views: 5715

Keyboard shortcut to close or switch away from Script Editor window

I'm using Mudlet on a Macbook. I love the keyboard shortcut cmd+e to open the Script Editor window -- but is there a similar keyboard shortcut to close it, or maybe just switch back to the main MUD window?
by Laps
Tue May 05, 2020 6:44 am
Forum: Mudlet Development
Topic: Bug With permAlias and permRegexTrigger Functions
Replies: 2
Views: 20704

Re: Bug With permAlias and permRegexTrigger Functions

+1 I am also experiencing this bug today, except: by "closing/reopening the profile" I think you might mean the Script Editor window. it seems nothing in the Script Editor window may be deleted after this point, before closing/reopening it Also, I believe this bug also can cause data loss ...
by Laps
Mon May 04, 2020 8:00 am
Forum: Help Forum
Topic: How to prevent input command echo with alias?
Replies: 14
Views: 9737

Re: How to prevent input command echo with alias?

Kinda funny - I happened across this thread in which someone else tried to accomplish the same effect by simply putting a deleteLine() in his alias, so the echo of his input text would be gagged while the output of his call to send() would be displayed: https://forums.mudlet.org/viewtopic.php?t=1707...
by Laps
Sun May 03, 2020 6:38 am
Forum: Help Forum
Topic: How to prevent input command echo with alias?
Replies: 14
Views: 9737

Re: How to prevent input command echo with alias?

Let's see if others have interest in this! Sounds good! Maybe it would be wise to rename the thread/feature to be a bit more self-explanatory - I'm really not sure I'm using the nomenclature either, so your thoughts are very much welcome. Perhaps something like: Feature Request: Enhance the "S...
by Laps
Thu Apr 30, 2020 9:42 am
Forum: Help Forum
Topic: How to Gag Consecutive Blank Lines?
Replies: 5
Views: 4661

Re: How to Gag Consecutive Blank Lines?

The next pattern starts matching on the same line as the previous line (this is helpful for other scenarios), so inbetween the two lines, put a 'line spacer' with a value of 1 to make it skip onto the next line. Woohoo, that works! Thanks :) Here's the working trigger: https://drive.google.com/uc?i...