1. 09 Haz, 2016 1 kayıt (commit)
  2. 11 Mar, 2016 1 kayıt (commit)
    • Jiří Techet's avatar
      Improve Goto Symbol popup contents · 65f84df5
      Jiří Techet yazdı
      * always filter-out symbol from the current line from the list
      * when clicked on a symbol on the current line always swap
        definition/declaration search even if there are more symbols from the
        current search direction
      
      Fixes #950
      65f84df5
  3. 10 Mar, 2016 1 kayıt (commit)
  4. 09 Mar, 2016 11 kayıt (commit)
  5. 08 Mar, 2016 3 kayıt (commit)
  6. 07 Mar, 2016 9 kayıt (commit)
  7. 06 Mar, 2016 8 kayıt (commit)
  8. 05 Mar, 2016 2 kayıt (commit)
    • Jiří Techet's avatar
      Rename socket_info_struct to SocketInfo · 6ecfb8b5
      Jiří Techet yazdı
      6ecfb8b5
    • Jiří Techet's avatar
      Don't show the goto popup for typedef synonyms · c84c41e4
      Jiří Techet yazdı
      For instance when performing goto tag for Foo and Foo is defined as
      
      typedef struct Foo {} Foo;
      
      go immediately to the struct location without showing the goto popup with
      both the struct name and typedef. When there are more occurrences of the
      name, filter the list and don't show the synonyms in the popup.
      
      In addition, if the cursor is on the same line as the typedef, go to
      the struct and vice versa.
      
      Note the missing
      
      g_strcmp0(second->var_type, first->name) == 0
      
      in the check - in this particular case we won't get the type to which the
      typedef refers inside var_type because at the time the typedef tag is
      generated in c.c the struct tag doesn't exist yet. On the other hand
      there's no second->var_type == NULL either because this behaviour seems
      to be rather implementation-specific and might easily change in the
      future. The existing checks are probably sufficient for the real-world
      code.
      c84c41e4
  9. 04 Mar, 2016 4 kayıt (commit)