Coder Social home page Coder Social logo

mdabbagh88 / omnisharp-sublime Goto Github PK

View Code? Open in Web Editor NEW

This project forked from omnisharp/omnisharp-sublime

0.0 1.0 0.0 46.95 MB

C# IDE Plugin for Sublime Text 3

Home Page: http://omnisharp-sublime.readthedocs.org/en/latest/

JavaScript 4.86% Python 93.83% Batchfile 0.21% Shell 0.92% Groff 0.19%

omnisharp-sublime's Introduction

Linux & OSX Windows
Build Status Build status

OmniSharpSublime for ST3

OmnisharpSublime is a plugin for ST3 to provide a C# development environment. It communicates with OmniSharpServer by nosami for IDE functions.

It works on:

  1. Mac OSX
  2. Linux
  3. Windows

Features

  1. Auto OmniSharpServer running
  2. Asynchronous communication with OmniSharpServer (Never freeze!)
  3. Auto Completion
  4. Goto definition
  5. Rename
  6. Goto implementation
  7. Syntax/Semantic error highlighting
  8. Displays possible override methods
  9. Find Usages
  10. Format Document
  11. Displays code issues such as assigment is redundant
  12. Fix code issues - put cursor on highlighted issue and select Fix Code Issue
  13. Remove Unused, Add Missing and Sort Using Statements
  14. Code Actions eg. Convert LINQ query to Fluent Syntax
  15. Add File To Project
  16. Remove File from Project (via sidebar and context menu)
  17. Add New C# Class & Interface (via sidebar and context menu) via File Templates which also adds to csproj
  18. Type Lookup with Documentation
  19. Hide/Show Info Panel
  20. Run Unit Tests
  21. Build/ReBuild/Clean Solution
  22. Reload Solution

#Requirements

#Installation

Building From Source

  1. Move to ST3 plugin directory in console.

     cd {path to ST3 plugin directory}/Packages
    
  2. Clone repository.

     git clone https://github.com/OmniSharp/omnisharp-sublime.git OmniSharp
    
  3. Move to plugin directory, update submodule and build.

     #Windows
     cd OmniSharp
     git submodule update --init --recursive
     build.cmd
     
     
     #Linux Or Mac OSX
     cd OmniSharp
     git submodule update --init --recursive
     ./build.sh or ./build.cmd
    

Selecting OmniSharp Version

Currently both omnisharp-server and omnisharp-roslyn are both supported. To swap between the different version open up the sublime command window ctrl-shift-p, type Select Server Version and press enter. Prebuilt-Roslyn and Prebuilt-Legacy are the only two working servers that work unless you have built the plugin from source.

Project Setting

The server will automatically find the the solution file from the folder you have opened in Sublime. If you have multiple solutions you have to specify the solution file you wish to use in a sublime-project.

  1. Go to File -> Open and select the folder with your solution in it.

  2. Go to Project -> Save Project As and save a YOURPROJECTNAME.sublime-project in the same location as your *.sln

  3. Open your YOURPROJECTNAME.sublime-project file that should now appear in the sidebar on the left

  4. Enter the location to the *.sln file like below

Example of a sublime-project

{
    "folders":
    [
        {
            "follow_symlinks": true,
            "path": "."
        }
    ],
    "solution_file": "./testconsoleprj.sln"
}

Once the YOURPROJECT.sublime-project is set up and saved, follow the below:

  1. Close Sublime (YMMV but this seems to be the best way to open the YOURPROJECTNAME.sublime-project)
  2. Open Sublime
  3. Click Project -> Open Project, and select your YOURPROJECT.sublime-project file

NOTE : For ASP.Net vNext applications please use the Roslyn branch of this repository.

C# language-specific settings

Create C# settings file as shown in this picture

Imgur

Paste the below in. This will launch intellisense on . and < symbols

{
   "auto_complete": true,
   "auto_complete_selector": "source - comment",
   "auto_complete_triggers": [ {"selector": "source.cs", "characters": ".<"} ],
}

#OmniSharpServer Settings The Sublime plugin communicates to OmniSharp Server which has various available settings stored in a config.json file. By default the location of this file is in a folder under the Sublime OmniSharp packages folder called PrebuiltOmniSharpServer and there is also a user specific plugin setting that specifies the location of this config.json file. To prevent your settings being overridden on new releases of the Sublime package, we recommend you store your config.json file somewhere other than the default location. Once you have taken a copy of config.json and put it somewhere safe you will need to update the Sublime plugin's user setting called "omnisharp_server_config_location".

#Format Document Settings

When you press Ctrl + K + D to format the document you may see CR markers.

CR Markers

This is to do with the settings for OmniSharpServer.

  1. Click Preferences - Browse Packages
  2. Go to OmniSharp/PrebuiltOmniSharpServer/ sub directory
  3. Open config.json and modify the eolMarker setting to \n like below

OR

Open your safely tucked away config.json file and modify the eolMarker setting to \n like below

  "TextEditorOptions": {
    "tabsToSpaces": true,
    "tabSize": 4,
    "indentSize": 4,
    "continuationIndent": 4,
    "labelIndent": 0,
    "eolMarker": "\n",
    "indentBlankLines": false,
    "wrapLineLength": 80
  },

#Unit Tests

For the plugin to be able to run unit tests you need to configure the test runner. This is done in the server config file.

  1. Click Preferences - Browse Packages
  2. Go to OmniSharp/PrebuiltOmniSharpServer/ sub directory
  3. Open config.json and modify the TestCommands like below

OR

Open your safely tucked away config.json file and modify the TestCommands like below

"TestCommands": {
   "All": "nunit-console.exe -nologo {{AssemblyPath}}",
   "Fixture": "nunit-console.exe -nologo {{AssemblyPath}} -run={{TypeName}}",
   "Single": "nunit-console.exe -nologo {{AssemblyPath}} -run={{TypeName}}.{{MethodName}}"
  },

omnisharp-sublime's People

Contributors

jchannon avatar astralhpi avatar robbert229 avatar myevan avatar maliayas avatar karlgluck avatar markrendle avatar jetski5822 avatar nathanboktae avatar nosami avatar invicticide avatar michaelblyons avatar mikeolteanu avatar chryan avatar wbond avatar shanselman avatar tmaxx avatar mjmcloug avatar julioc avatar jkells avatar hgranholm avatar guidobouman avatar filipw avatar figbash avatar dsmeathers avatar djsell avatar xdegtyarev avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.