Simon Strandgaard
Simon Strandgaard
Currently the info panel only reloads when you press F4 two times. It is really annoying that I have to press F4 so many times. Optimal if it could reload...
# Sparkle Sadly Sparkle doesn't work with Xcode 5 and 64bit. http://sparkle.andymatuschak.org/ https://github.com/andymatuschak/Sparkle
The copy/move operations are running in the same process as the active tab. This should instead be run in a separate process, so that move/copy between folders with different permissions...
Currently files can only be selected using the keyboard. ``` SHIFT arrow_up select current row and move cursor one line up SHIFT arrow_down select current row and move cursor one...
It doesn't currently respond to clicks on a folder in a tab. Use the keyboard instead. The `enter key` navigates into the folder. The `backspace key` navigates out of the...
It triggers a warning: ``` AppDelegate.m:264:7: 'AuthorizationExecuteWithPrivileges' is deprecated: first deprecated in OS X 10.7 ``` Instead [SMJobBless](http://stackoverflow.com/questions/6841937/authorizationexecutewithprivileges-is-deprecated) should be used. See this [sample project](https://github.com/iamleeg/LogViewer). Is `SMJobBless()` still the mechanism...
I have swiftified your PSCustomViewFromXib code, https://gist.github.com/neoneye/8f3b9755bad271572411 Thank you Paul for this awesome component.
IMHO Instead of textEditor.font = NSFont.init(name: "Helvetica Neue", size: 16.0) then use textEditor.font = NSFont(name: "Helvetica Neue", size: 16.0)
IMHO Instead of class ViewController: NSViewController, NSTextStorageDelegate { Then do class ViewController: NSViewController { // ... } extension ViewController: NSTextStorageDelegate { func textStorage() }
First of all, I really appreciate what you are doing. # Problem The [readme](https://github.com/japaric/cargo-call-stack/blob/main/README.md) describes how to run the examples. There is a [firmware/examples](https://github.com/japaric/cargo-call-stack/tree/main/firmware/examples) dir. I wonder if these are...