Unity Community


Results 1 to 9 of 9

  1. Location
    Paris
    Posts
    3,673

    MonoDevelop secret tips :

    Hello,

    I just found a neat built-in feature inside MonoDevelop :

    Whenever you put the word "TODO" (case sensitive) in a comment, it highlights the word in a flashy color so that you can see it instantly when browsing your code.

    Can be very helpful to find an old Todo thing !

    Considering it's kind of cool, and totally unnecessary from MonoDevelop devs to implement that, I guess there are other built-in tricks like that.

    Do you know some ?


  2. Location
    Istanbul
    Posts
    113
    You know it also pops up in a list inside TaskList pad (View -> Pads -> TaskList)


  3. Location
    Paris
    Posts
    3,673
    Brilliant ! Thanks


  4. Location
    Rome / Niš
    Posts
    1,302
    Ehe, probably by now you will have got them, but just in case:
    - FIXME is the same as TODO, but is highlighted in red.
    - In MonoDevelop "Tools > Options > Task List" you can add more tokens (special words) and set their importance.

    Holoville Games | Blog | Illustrations/Comics | Twitter
    HOTween : a fast, type-safe, and powerful Unity tween engine
    HOTools : a tools panel for Unity
    HOUnityLibs : an open-source collection of libraries for Unity


  5. Location
    Paris
    Posts
    3,673
    Didn't know the FIXME one, thanks


  6. Posts
    8
    I spent an afternoon trying to get to know MonoDevelop better, and I wrote up a list of tips I found.


  7. Location
    Winterthur, Switzerland
    Posts
    12
    Thanks for that list, very helpfull
    Help Frank the Fish to survive on iOS and Android.


  8. Location
    Germany
    Posts
    135
    Wow. I always write Todo´s in my scripts and wished that something like that exists XD
    I use C# in Visual Studio but it works there too!


  9. Location
    Mississauga, Ontario
    Posts
    35
    The two uncommon commands that I use a LOT are:

    "Navigate to" - just start typing the name of ANY class or method name or variable name in your project, and it'll take you right there. Super handy, I use this constantly. Bind it to a shortcut that's easy for you to do with one hand (CTRL+Shift+R for me).

    "Dynamic Abbrev" - bound to Ctrl+/ for me. Type the first character or two of ANYTHING you could possibly want to write (ex. variable names, method names), it will fill in the rest, if it doesn't choose the right one, keep hitting the shortcut until it does. It goes in historical order of the most recent things you typed. It's like autocompletion but super fast because it's not doing any complex calculations, it's just looking through things that have been typed in the past (or something like that). Seriously this will save you from typing TONS of stuff, I use this more than any other shortcut.