Giter VIP home page Giter VIP logo

deadlydog / ahkcommandpicker Goto Github PK

View Code? Open in Web Editor NEW
84.0 84.0 10.0 461 KB

An AutoHotkey (AHK) script that allows you to easily run AHK functions. Instead of having to remember what shortcut key maps to each of your AHK scripts, this displays a list of all your AHK functions and allows you to easily run them.

License: MIT License

AutoHotkey 100.00%
ahk ahk-command-picker autohotkey hacktoberfest productivity

ahkcommandpicker's Introduction

Hand waving Hi, I'm Dan Schroeder, known on the web as deadlydog

Word cloud banner with descriptive words about Dan Schroeder

ℹ About me

  • Have a passion for software development and automation.
  • Been writing code for over 20 years; since ~2000.
  • Master's degree in Computer Science.
  • Enjoy creating open source software, mostly in GitHub.
  • Also have some private repos and pipelines tucked away in Azure DevOps.

🍨 Content

💬 Social

Twitter Mastodon LinkedIn YouTube Stack Overflow

🏆 Stats

GitHub stats Top languages GitHub streak stats Stack Overflow stats

📜 Certifications

My badges from Credly

Microsoft Certified: DevOps Engineer Expert badge Microsoft Certified: Azure Developer Associate badge Microsoft Certified: Azure Fundamentals badge AZ-400: Designing and Implementing Microsoft DevOps Solutions badge Exam 483: Programming in C# badge Exam 480: Programming in HTML5 with JavaScript and CSS3 badge

🎈Just for fun

Watch a 🐍 eat my GitHub contributions 🍏.

GitHubContributionsSnake

ahkcommandpicker's People

Contributors

deadlydog avatar yazgoo avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

ahkcommandpicker's Issues

Insert custom Command issues

Hi,
if i put this code in the file Mycommands.ahk

AddCommand("shortNameFunction","Name_Function","description Explore path D:\Downloads")
Name_Function()
{
Run, D:\Downloads
}

the list box show me this
shortNameFunction => Name_Function

instead of show me
shortNameFunction => description Explore path D:\Downloads

I'm sorry for my english i tried to explain...

but this command in the file defaultcommands.ahk works fine and show me in the listbox
WindowCloseAll => Closes all open windows

AddNamedCommand("WindowCloseAll", "CloseAllWin", "Closes all open windows")
CloseAllWin()
{
MatchList = AutoHotKey Help, Any Other Window Names To Leave Open

WinGet, ID, List, , , Program Manager
Loop, %ID%
{
	StringTrimRight, This_ID, ID%A_Index%, 0
	WinGetTitle, This_Title, ahk_id %This_ID%
	If This_Title in %MatchList%
		Continue
	WinClose, %This_Title%
}

}

How to modify the trigger shortcut key

Hello author! I am learning ahk, so I am not very familiar with ahk code. I want to modify the trigger shortcut keys. How should I modify the source code?

Bug: GUI selects the wrong command when typing very fast and using parameters

Sometimes when typing very fast to select a command and then hitting the , to specify a command parameter, the listbox will choose the wrong command.

e.g. Typing ff, will have the Food for family command selected and list its parameters when it should actually have Firefox selected and list its parameters. Simply backspacing out the , will have the picker reset and select the correct Firefox command.

This issue does not happen all of the time. It seems to only happen some of the time, likely due to a race condition.

Listview of commandbox

I think it's be better if you could change command listbox style to listview style for separating the commands and its description,vvvv

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.