Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Esc + a + Tab crashes Sublime #233

Open
Mattiaslndstrm opened this issue Nov 12, 2018 · 1 comment
Open

Esc + a + Tab crashes Sublime #233

Mattiaslndstrm opened this issue Nov 12, 2018 · 1 comment
Labels
area:operators Issues relating to any operator. bug:norepro Bugs that can't be reproduced reliably.

Comments

@Mattiaslndstrm
Copy link

I can't seem to recreate this with a smaller amount of code, but the applying the following command on the following code reliably crashes Sublime for me:

Cursor at column 1 at line 3: ci{ esc a tab

int main(void)
{

struct catalog_item2
    {
        int stock_number;
        double price;
        int item_type;
        union
        {
            struct
            {
                char title[50 + 1];
                char author[50 + 1];
                int num_pages;
            }
            book;
            struct
            {
                char design[50 + 1];
            }
            mug;
            struct
            {
                int colors;
                int sizes;
            }
            shirt;

        }
        item;
    };    
}

There is also some general problems with tab where the cursor is jumping to a whole new place in the code instead of making a tab. This might very well be the cause of a different plugin though.

@guillermooo guillermooo added area:operators Issues relating to any operator. bug:norepro Bugs that can't be reproduced reliably. labels Nov 13, 2018
@guillermooo
Copy link
Owner

@Mattiaslndstrm I can't repro this bug following your instructions. It may be worth disabling all other packages to see if ther may be a bad interaction with one of them.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area:operators Issues relating to any operator. bug:norepro Bugs that can't be reproduced reliably.
Projects
None yet
Development

No branches or pull requests

2 participants