Changes between Version 4 and Version 5 of AutoCompletion
- Timestamp:
- 05/21/13 15:47:18 (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
AutoCompletion
v4 v5 1 The IDE support for Cobra (whether MonoDevelop, Visual Studio or others) does not yet support autocompletion (aka Intellisense). There are some mitigators to help you out:1 The Cobra add-in for MonoDevelop or Xamarin Studio provides some amount of support for code completion. Consult the README file provided with the add-in to see what is and what is not working. Better support for autocompletion in MonoDevelop is currently under active development. 2 2 3 1. '''Compiler suggestions:''' The Cobra compiler will make provide suggestions for unknown members. This comes in handy if you know a few characters of the member in question. For example, the code `someString.tri` will yield: 3 Other IDEs, such as Visual Studio, do not yet support autocompletion (aka Intellisense) for Cobra. There are some mitigators to help you out: 4 5 1. '''Compiler suggestions:''' The Cobra compiler will make suggestions for unknown members. This comes in handy if you know a few characters of the member in question. For example, the code `someString.tri` will yield: 4 6 {{{ 5 7 error: Cannot find a definition for "tri" in "someString" whose type is "String". … … 16 18 }}} 17 19 18 3. '''Native autocomplete:''' Some editors such as UltraEdit on Windows and TextMate on Mac will provide an autocomplete based on words found in the file. While this doesn't help with discovery, it can reduce typing when variables, typesand methods are reused. Other editors such as gedit can support this through a plug-in.20 3. '''Native autocomplete:''' Some editors such as UltraEdit on Windows, TextMate on Mac, or Vim on Linux provide autocompletion based on words found in the file. While this doesn't help with discovery, it can reduce typing when variables, types, and methods are reused. Other editors such as gedit can support this through a plug-in. 19 21 20 22 Cobra is a community-driven open source project. If you would like to help with autocomplete support, speak up on the discussion forum.