chenlibing

Avatar
  • Total activity 407
  • Last activity
  • Member since
  • Following 0 users
  • Followed by 0 users
  • Votes 0
  • Subscriptions 173
  • chenlibing created a post,

    File Template to support .h and .m creation both

    I want to create CUnit testcase,  and one .h and .m file should be created both.  Can I use file template to create class file with both .h and .m?  File assistant is key feature in XCode to create...
  • chenlibing created a post,

    Any plan to support Yard in RubyMine 2.5

    Yard is a great document tools in Ruby, and it has been adopted in a lot of ruby projects. It include meta tag just like jsdoc, and IDE can use these tags for code completion, navigation and so on....
  • chenlibing created a post,

    How to implement code completion for module and method with same name?

    Following code is from Hpricot, and Hpricot is method name, also module name.  How to implement code completion for Hpricot module?     Hpricot.<caret> ,When I press Ctrl+Space, nothing popuped!  I...
  • chenlibing created a post,

    Where to add module dependencies in PyCharm?

    In IDEA with Python plugin installed, I can add GAE as module dependency and get code completion. And how to add module dependencies in PyCharm?
  • chenlibing created a post,

    Any plan to support yard?

    YARD is a documentation generation tool for the Ruby programming language. It enables the user to generate consistent, usable documentation that can be exported to a number of formats very easily, ...
  • chenlibing created a post,

    RubyMine extension for Rio can not work!

    I have write an extension for Rio,  code as following:[code]def register_rio_types()  describe 'Kernel' do    set_return_type "rio" => "RIO::Rio"  end  describe 'RIO::Rio' do    set_return_type "fi...
  • chenlibing created a post,

    Where to get Open api javadoc for JEE?

    For plugin developers, JEE, DataSource, Spring and so on, are the base to build more useful plugins. How to get open api document for them?
  • chenlibing created a post,

    Spelling: can I add my own dictionary?

    Now only jetbrains.dic and english.dic bundled, but there are still some words absent for spelling check, such as words int groupId and artifactId from the maven repository. I have created the mave...
  • chenlibing created a post,

    How to use Ruby API for defining

    The following features have been implemented, and how to use them?  Thanks! Ruby API for defining dynamic types Ruby API for defining native sources
  • chenlibing created a post,

    How to make spell checker plugin to load my own dictionary?

    Now spell checker plugin loads jetbrains.dic and english.dic, and I create a dic(text file) from maven repository, and how to make this dic loaded by the plugin?