Shinichi Katayama
Shinichi Katayama
Fixes #102 * Add `DirenvProvider` to support `.envrc` file * Add `org.jetbrains.intellij` plugin to `core` because it depends on several classes in `com.intellij.execution`. Please let me know if there's any...
node-gyp defines BUILDING_NODE_EXTENSION in addon.gypi (https://github.com/nodejs/node-gyp/blob/9bfa0876b46764978492fffea074d2d7aa8954f9/addon.gypi). It's used in node.h below. cmake-js should define it, too. ``` c++ #ifdef _WIN32 # ifndef BUILDING_NODE_EXTENSION # define NODE_EXTERN __declspec(dllexport) # else #...
When I work with msgpack.Stream + deasync(https://github.com/abbr/deasync), the following program causes stack overflow. This issue is caused because msgpack.Stream emits 'msg' event before it consumes a buffer and deasync allows...
Currently `welcome.with_name` localization key generates `welcomeWith_name` function. That's a weird name. I'd like to introduce an option to generate `welcomeWithName` function instead.
If I use deasync + net.createConnection, the following code doesn't work on Windows but works on Mac. I tested in Node.js v5.1.0. Does loopWhile not process io events on Windows?...
Fixes #81 by supporting forwarding delegate method calls similar to RxCocoa's [setDelegate](https://github.com/ReactiveX/RxSwift/blob/1a1fa37b0d08e0f99ffa41f98f340e8bc60c35c4/RxCocoa/iOS/UIScrollView%2BRx.swift#L125). RxCocoa `setDelegate` example. https://github.com/ReactiveX/RxSwift/blob/1a1fa37b0d08e0f99ffa41f98f340e8bc60c35c4/RxExample/RxExample/Examples/SimpleTableViewExampleSectioned/SimpleTableViewExampleSectionedViewController.swift#L68
**Describe the bug** `tableView(_:viewForHeaderInSection:)` delegate method cannot be used when using `tableView.didEndScrollingAnimationPublisher`. **To Reproduce** ``` class MyViewController: UIViewController { @IBOutlet private weak var tableView: UITableView! override func viewDidLoad() { super.viewDidLoad()...
This PR should fix https://github.com/GitbookIO/nuts/issues/32. Support RELEASES-x64 for x64 platform in Windows. - RELEASES-x64 (for x64) - RELEASES (for ia-32)
Improved the "Go to Definition" command to jump to the function name instead of the beginning of the `function` keyword. Example: ``` function foo() { ... } foo(); // "Go...