Hacker News new | ask | show | jobs
by heartbeats 2315 days ago
No, posting somewhere moves the whole subthread to the top.

Before:

  ├── a
  │   ├── b
  │   │   ├── c
  │   │   └── d
  │   └── e  
  └── f
      ├── g
      │   ├── h
      │   └── *i* <- this is new
      └── j
After:

  ├── f
  │   ├── g
  │   │   ├── i <- moved to top of its thread and its thread moved to the top
  │   │   └── h
  │   └── j  
  └── a
      ├── b
      │   ├── c
      │   └── d
      └── e