This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Tue Aug 26 12:14:01 -0700 2008 | |
| |
.gitmodules | ||
| |
English.lproj/ | ||
| |
Info.plist | ||
| |
Plugin.xml | ||
| |
Plugins/ | ||
| |
QuickCursor.xcodeproj/ | ||
| |
QuickCursor_Prefix.pch | ||
| |
README.txt | ||
| |
Vendor/ | ||
| |
main.m |
README.txt
About: QuickCursor is menu item that allows you to edit text from any application in your favorite text editor*. Unlike custom “edit in” plugin solutions QuickCursor provides a standard open source solution that uses public API's and doesn’t requir e input manager hacks to work. QuickCursor works by reading a string value from the source application via the current AXUIElement. Next it sets up a ODBEditor session with the preffered editor. When the preffered editor modifies the string QuickCursor writes that value back into the source application via the AXUIElement. Todo: - Figure out best way to setup keyboard shortcuts for items in the QuickCursor menu. - Doesn't work with Mail.app. Mail.app's text area is a AXWebArea. It seems that the default kAXValueAttribute doesn't work for reading and writing AXWebArea's text. Need to find out how to read write text from AXWebArea and handle as a special case. - String is written back into source application with [QCUIElement setValue:]. This generally works, but it seems to change the value behind the scenes... this can mess up undo stacks and such in the destination app. Needs to be some documenentation that describes how the source app can be made aware of these changes and how to custom handle them. - Doesn't seem to work with BBEdit editor. Building: First checkout from github: $ git clone git://github.com/jessegrosjean/quickcursor.git ... Next init and update submodules: $ cd quickcursor/ $ git submodule init ... $ git submodule update ... $ open QuickCursor.xcodeproj/ To build QuickCursor: 1. Open the QuickCursor XCode project ./QuickCursor/QuickCursor.xcode 2. In xCode preferences (XCode > Preferences...) go to the "Building" section and make sure that you have a single customized location where all build products are placed. See the "Place Build Products in:" label of that preference pane. I use "/xcodebuilds" 3. You should now be able to build the QuickCursor target. Thanks, Jesse Grosjean jesse@hogbaysoftware.com








